Cochrane+ App API

<back to all web services

Migrate

The following routes are available for this service:
GET/migrateMigration method used to perform custom logic
import 'package:servicestack/servicestack.dart';

class ApiServiceResponse implements IServiceResponse, IConvertible
{
    String? description;
    String? heading;
    bool? wasSuccessful;
    dynamic? modelState;

    ApiServiceResponse({this.description,this.heading,this.wasSuccessful,this.modelState});
    ApiServiceResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        description = json['description'];
        heading = json['heading'];
        wasSuccessful = json['wasSuccessful'];
        modelState = JsonConverters.fromJson(json['modelState'],'dynamic',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'description': description,
        'heading': heading,
        'wasSuccessful': wasSuccessful,
        'modelState': JsonConverters.toJson(modelState,'dynamic',context!)
    };

    getTypeName() => "ApiServiceResponse";
    TypeContext? context = _ctx;
}

class MigrateResponse extends ApiServiceResponse implements IConvertible
{
    int? recordsUpdated;
    int? recordsDeleted;
    int? recordsAdded;

    MigrateResponse({this.recordsUpdated,this.recordsDeleted,this.recordsAdded});
    MigrateResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        super.fromMap(json);
        recordsUpdated = json['recordsUpdated'];
        recordsDeleted = json['recordsDeleted'];
        recordsAdded = json['recordsAdded'];
        return this;
    }

    Map<String, dynamic> toJson() => super.toJson()..addAll({
        'recordsUpdated': recordsUpdated,
        'recordsDeleted': recordsDeleted,
        'recordsAdded': recordsAdded
    });

    getTypeName() => "MigrateResponse";
    TypeContext? context = _ctx;
}

class Migrate implements IConvertible
{
    Migrate();
    Migrate.fromJson(Map<String, dynamic> json) : super();
    fromMap(Map<String, dynamic> json) {
        return this;
    }

    Map<String, dynamic> toJson() => {};
    getTypeName() => "Migrate";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'cochraneplus_api_dev.happen.zone', types: <String, TypeInfo> {
    'ApiServiceResponse': TypeInfo(TypeOf.Class, create:() => ApiServiceResponse()),
    'MigrateResponse': TypeInfo(TypeOf.Class, create:() => MigrateResponse()),
    'Migrate': TypeInfo(TypeOf.Class, create:() => Migrate()),
});

Dart Migrate DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /migrate HTTP/1.1 
Host: cochraneplus-api-dev.happen.zone 
Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"recordsUpdated":0,"recordsDeleted":0,"recordsAdded":0,"description":"String","heading":"String","wasSuccessful":false,"modelState":{}}