Test

<back to all web services

TestUploadWithDto

import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
import 'dart:collection';

class Poco implements IConvertible
{
    String? name;

    Poco({this.name});
    Poco.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        name = json['name'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'name': name
    };

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

class TestUploadWithDto implements IPost, IConvertible
{
    int? Int;
    int? nullableId;
    int? long;
    double? Double;
    String? string;
    DateTime? dateTime;
    List<int>? intArray;
    List<int>? intList;
    List<String>? stringArray;
    List<String>? stringList;
    List<Poco>? pocoArray;
    List<Poco>? pocoList;
    List<int?>? nullableByteArray;
    List<int>? nullableByteList;
    List<DateTime?>? nullableDateTimeArray;
    List<DateTime>? nullableDateTimeList;
    Map<String,List<Poco>?>? pocoLookup;
    Map<String,List<Map<String,Poco>>?>? pocoLookupMap;
    Map<String,List<String>?>? mapList;

    TestUploadWithDto({this.Int,this.nullableId,this.long,this.Double,this.string,this.dateTime,this.intArray,this.intList,this.stringArray,this.stringList,this.pocoArray,this.pocoList,this.nullableByteArray,this.nullableByteList,this.nullableDateTimeArray,this.nullableDateTimeList,this.pocoLookup,this.pocoLookupMap,this.mapList});
    TestUploadWithDto.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        Int = json['int'];
        nullableId = json['nullableId'];
        long = json['long'];
        Double = JsonConverters.toDouble(json['double']);
        string = json['string'];
        dateTime = JsonConverters.fromJson(json['dateTime'],'DateTime',context!);
        intArray = JsonConverters.fromJson(json['intArray'],'List<int>',context!);
        intList = JsonConverters.fromJson(json['intList'],'List<int>',context!);
        stringArray = JsonConverters.fromJson(json['stringArray'],'List<String>',context!);
        stringList = JsonConverters.fromJson(json['stringList'],'List<String>',context!);
        pocoArray = JsonConverters.fromJson(json['pocoArray'],'List<Poco>',context!);
        pocoList = JsonConverters.fromJson(json['pocoList'],'List<Poco>',context!);
        nullableByteArray = JsonConverters.fromJson(json['nullableByteArray'],'List<int?>',context!);
        nullableByteList = JsonConverters.fromJson(json['nullableByteList'],'List<int>',context!);
        nullableDateTimeArray = JsonConverters.fromJson(json['nullableDateTimeArray'],'List<DateTime?>',context!);
        nullableDateTimeList = JsonConverters.fromJson(json['nullableDateTimeList'],'List<DateTime>',context!);
        pocoLookup = JsonConverters.fromJson(json['pocoLookup'],'Map<String,List<Poco>?>',context!);
        pocoLookupMap = JsonConverters.fromJson(json['pocoLookupMap'],'Map<String,List<Map<String,Poco>>?>',context!);
        mapList = JsonConverters.fromJson(json['mapList'],'Map<String,List<String>?>',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'int': Int,
        'nullableId': nullableId,
        'long': long,
        'double': Double,
        'string': string,
        'dateTime': JsonConverters.toJson(dateTime,'DateTime',context!),
        'intArray': JsonConverters.toJson(intArray,'List<int>',context!),
        'intList': JsonConverters.toJson(intList,'List<int>',context!),
        'stringArray': JsonConverters.toJson(stringArray,'List<String>',context!),
        'stringList': JsonConverters.toJson(stringList,'List<String>',context!),
        'pocoArray': JsonConverters.toJson(pocoArray,'List<Poco>',context!),
        'pocoList': JsonConverters.toJson(pocoList,'List<Poco>',context!),
        'nullableByteArray': JsonConverters.toJson(nullableByteArray,'List<int?>',context!),
        'nullableByteList': JsonConverters.toJson(nullableByteList,'List<int>',context!),
        'nullableDateTimeArray': JsonConverters.toJson(nullableDateTimeArray,'List<DateTime?>',context!),
        'nullableDateTimeList': JsonConverters.toJson(nullableDateTimeList,'List<DateTime>',context!),
        'pocoLookup': JsonConverters.toJson(pocoLookup,'Map<String,List<Poco>?>',context!),
        'pocoLookupMap': JsonConverters.toJson(pocoLookupMap,'Map<String,List<Map<String,Poco>>?>',context!),
        'mapList': JsonConverters.toJson(mapList,'Map<String,List<String>?>',context!)
    };

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

TypeContext _ctx = TypeContext(library: 'test.servicestack.net', types: <String, TypeInfo> {
    'Poco': TypeInfo(TypeOf.Class, create:() => Poco()),
    'TestUploadWithDto': TypeInfo(TypeOf.Class, create:() => TestUploadWithDto()),
    'List<Poco>': TypeInfo(TypeOf.Class, create:() => <Poco>[]),
    'List<int?>': TypeInfo(TypeOf.Class, create:() => <int?>[]),
    'List<DateTime?>': TypeInfo(TypeOf.Class, create:() => <DateTime?>[]),
    'List<DateTime>': TypeInfo(TypeOf.Class, create:() => <DateTime>[]),
    'Map<String,List<Poco>?>': TypeInfo(TypeOf.Class, create:() => Map<String,List<Poco>?>()),
    'Map<String,List<Map<String,Poco>>?>': TypeInfo(TypeOf.Class, create:() => Map<String,List<Map<String,Poco>>?>()),
    'List<Map<String,Poco>>': TypeInfo(TypeOf.Class, create:() => <Map<String,Poco>>[]),
    'Map<String,Poco>': TypeInfo(TypeOf.Class, create:() => Map<String,Poco>()),
    'Map<String,List<String>?>': TypeInfo(TypeOf.Class, create:() => Map<String,List<String>?>()),
});

Dart TestUploadWithDto 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.

POST /xml/reply/TestUploadWithDto HTTP/1.1 
Host: test.servicestack.net 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<TestUploadWithDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Test.ServiceModel">
  <DateTime>0001-01-01T00:00:00</DateTime>
  <Double>0</Double>
  <Int>0</Int>
  <IntArray xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>0</d2p1:int>
  </IntArray>
  <IntList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>0</d2p1:int>
  </IntList>
  <Long>0</Long>
  <MapList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringArrayOfstringty7Ep6D1>
      <d2p1:Key>String</d2p1:Key>
      <d2p1:Value>
        <d2p1:string>String</d2p1:string>
      </d2p1:Value>
    </d2p1:KeyValueOfstringArrayOfstringty7Ep6D1>
  </MapList>
  <NullableByteArray xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:unsignedByte>0</d2p1:unsignedByte>
  </NullableByteArray>
  <NullableByteList xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:unsignedByte>0</d2p1:unsignedByte>
  </NullableByteList>
  <NullableDateTimeArray xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:dateTime>0001-01-01T00:00:00</d2p1:dateTime>
  </NullableDateTimeArray>
  <NullableDateTimeList xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:dateTime>0001-01-01T00:00:00</d2p1:dateTime>
  </NullableDateTimeList>
  <NullableId>0</NullableId>
  <PocoArray xmlns:d2p1="http://schemas.datacontract.org/2004/07/Test.ServiceModel.Types">
    <d2p1:Poco>
      <d2p1:Name>String</d2p1:Name>
    </d2p1:Poco>
  </PocoArray>
  <PocoList xmlns:d2p1="http://schemas.datacontract.org/2004/07/Test.ServiceModel.Types">
    <d2p1:Poco>
      <d2p1:Name>String</d2p1:Name>
    </d2p1:Poco>
  </PocoList>
  <PocoLookup xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringArrayOfPocoSxVl28_Sd>
      <d2p1:Key>String</d2p1:Key>
      <d2p1:Value xmlns:d4p1="http://schemas.datacontract.org/2004/07/Test.ServiceModel.Types">
        <d4p1:Poco>
          <d4p1:Name>String</d4p1:Name>
        </d4p1:Poco>
      </d2p1:Value>
    </d2p1:KeyValueOfstringArrayOfPocoSxVl28_Sd>
  </PocoLookup>
  <PocoLookupMap xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringArrayOfArrayOfKeyValueOfstringPocoSxVl28_Sdty7Ep6D1>
      <d2p1:Key>String</d2p1:Key>
      <d2p1:Value>
        <d2p1:ArrayOfKeyValueOfstringPocoSxVl28_Sd>
          <d2p1:KeyValueOfstringPocoSxVl28_Sd>
            <d2p1:Key>String</d2p1:Key>
            <d2p1:Value xmlns:d7p1="http://schemas.datacontract.org/2004/07/Test.ServiceModel.Types">
              <d7p1:Name>String</d7p1:Name>
            </d2p1:Value>
          </d2p1:KeyValueOfstringPocoSxVl28_Sd>
        </d2p1:ArrayOfKeyValueOfstringPocoSxVl28_Sd>
      </d2p1:Value>
    </d2p1:KeyValueOfstringArrayOfArrayOfKeyValueOfstringPocoSxVl28_Sdty7Ep6D1>
  </PocoLookupMap>
  <String>String</String>
  <StringArray xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </StringArray>
  <StringList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </StringList>
</TestUploadWithDto>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<TestUploadWithDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Test.ServiceModel">
  <DateTime>0001-01-01T00:00:00</DateTime>
  <Double>0</Double>
  <Int>0</Int>
  <IntArray xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>0</d2p1:int>
  </IntArray>
  <IntList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>0</d2p1:int>
  </IntList>
  <Long>0</Long>
  <MapList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringArrayOfstringty7Ep6D1>
      <d2p1:Key>String</d2p1:Key>
      <d2p1:Value>
        <d2p1:string>String</d2p1:string>
      </d2p1:Value>
    </d2p1:KeyValueOfstringArrayOfstringty7Ep6D1>
  </MapList>
  <NullableByteArray xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:unsignedByte>0</d2p1:unsignedByte>
  </NullableByteArray>
  <NullableByteList xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:unsignedByte>0</d2p1:unsignedByte>
  </NullableByteList>
  <NullableDateTimeArray xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:dateTime>0001-01-01T00:00:00</d2p1:dateTime>
  </NullableDateTimeArray>
  <NullableDateTimeList xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:dateTime>0001-01-01T00:00:00</d2p1:dateTime>
  </NullableDateTimeList>
  <NullableId>0</NullableId>
  <PocoArray xmlns:d2p1="http://schemas.datacontract.org/2004/07/Test.ServiceModel.Types">
    <d2p1:Poco>
      <d2p1:Name>String</d2p1:Name>
    </d2p1:Poco>
  </PocoArray>
  <PocoList xmlns:d2p1="http://schemas.datacontract.org/2004/07/Test.ServiceModel.Types">
    <d2p1:Poco>
      <d2p1:Name>String</d2p1:Name>
    </d2p1:Poco>
  </PocoList>
  <PocoLookup xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringArrayOfPocoSxVl28_Sd>
      <d2p1:Key>String</d2p1:Key>
      <d2p1:Value xmlns:d4p1="http://schemas.datacontract.org/2004/07/Test.ServiceModel.Types">
        <d4p1:Poco>
          <d4p1:Name>String</d4p1:Name>
        </d4p1:Poco>
      </d2p1:Value>
    </d2p1:KeyValueOfstringArrayOfPocoSxVl28_Sd>
  </PocoLookup>
  <PocoLookupMap xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringArrayOfArrayOfKeyValueOfstringPocoSxVl28_Sdty7Ep6D1>
      <d2p1:Key>String</d2p1:Key>
      <d2p1:Value>
        <d2p1:ArrayOfKeyValueOfstringPocoSxVl28_Sd>
          <d2p1:KeyValueOfstringPocoSxVl28_Sd>
            <d2p1:Key>String</d2p1:Key>
            <d2p1:Value xmlns:d7p1="http://schemas.datacontract.org/2004/07/Test.ServiceModel.Types">
              <d7p1:Name>String</d7p1:Name>
            </d2p1:Value>
          </d2p1:KeyValueOfstringPocoSxVl28_Sd>
        </d2p1:ArrayOfKeyValueOfstringPocoSxVl28_Sd>
      </d2p1:Value>
    </d2p1:KeyValueOfstringArrayOfArrayOfKeyValueOfstringPocoSxVl28_Sdty7Ep6D1>
  </PocoLookupMap>
  <String>String</String>
  <StringArray xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </StringArray>
  <StringList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </StringList>
</TestUploadWithDto>