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 .xml suffix or ?format=xml

HTTP + XML

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: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<MigrateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebService.ServiceModel">
  <Description xmlns="http://schemas.datacontract.org/2004/07/CommonService.Api.Models.Base">String</Description>
  <Heading xmlns="http://schemas.datacontract.org/2004/07/CommonService.Api.Models.Base">String</Heading>
  <ModelState xmlns="http://schemas.datacontract.org/2004/07/CommonService.Api.Models.Base" />
  <WasSuccessful xmlns="http://schemas.datacontract.org/2004/07/CommonService.Api.Models.Base">false</WasSuccessful>
  <RecordsAdded>0</RecordsAdded>
  <RecordsDeleted>0</RecordsDeleted>
  <RecordsUpdated>0</RecordsUpdated>
</MigrateResponse>