<?php namespace dtos;
use DateTime;
use Exception;
use DateInterval;
use JsonSerializable;
use ServiceStack\{IReturn,IReturnVoid,IGet,IPost,IPut,IDelete,IPatch,IMeta,IHasSessionId,IHasBearerToken,IHasVersion};
use ServiceStack\{ICrud,ICreateDb,IUpdateDb,IPatchDb,IDeleteDb,ISaveDb,AuditBase,QueryDb,QueryDb2,QueryData,QueryData2,QueryResponse};
use ServiceStack\{ResponseStatus,ResponseError,EmptyResponse,IdResponse,ArrayList,KeyValuePair2,StringResponse,StringsResponse,Tuple2,Tuple3,ByteArray};
use ServiceStack\{JsonConverters,Returns,TypeContext};
class Poco implements JsonSerializable
{
public function __construct(
/** @var string */
public string $name=''
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['name'])) $this->name = $o['name'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->name)) $o['name'] = $this->name;
return empty($o) ? new class(){} : $o;
}
}
class TestUploadWithDto implements IPost, JsonSerializable
{
public function __construct(
/** @var int */
public int $int=0,
/** @var int|null */
public ?int $nullableId=null,
/** @var int */
public int $long=0,
/** @var float */
public float $double=0.0,
/** @var string */
public string $string='',
/** @var DateTime */
public DateTime $dateTime=new DateTime(),
/** @var int[]|null */
public ?array $intArray=null,
/** @var array<int>|null */
public ?array $intList=null,
/** @var string[]|null */
public ?array $stringArray=null,
/** @var array<string>|null */
public ?array $stringList=null,
/** @var Poco[]|null */
public ?array $pocoArray=null,
/** @var array<Poco>|null */
public ?array $pocoList=null,
/** @var array<int>|null */
public ?array $nullableByteArray=null,
/** @var array<int>|null */
public ?array $nullableByteList=null,
/** @var array<DateTime>|null */
public ?array $nullableDateTimeArray=null,
/** @var array<DateTime>|null */
public ?array $nullableDateTimeList=null,
/** @var array<string,Poco[]>|null */
public ?array $pocoLookup=null,
/** @var array<string,array<string,Poco>[]>|null */
public ?array $pocoLookupMap=null,
/** @var array<string,string[]>|null */
public ?array $mapList=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['int'])) $this->int = $o['int'];
if (isset($o['nullableId'])) $this->nullableId = $o['nullableId'];
if (isset($o['long'])) $this->long = $o['long'];
if (isset($o['double'])) $this->double = $o['double'];
if (isset($o['string'])) $this->string = $o['string'];
if (isset($o['dateTime'])) $this->dateTime = JsonConverters::from('DateTime', $o['dateTime']);
if (isset($o['intArray'])) $this->intArray = JsonConverters::fromArray('int', $o['intArray']);
if (isset($o['intList'])) $this->intList = JsonConverters::fromArray('int', $o['intList']);
if (isset($o['stringArray'])) $this->stringArray = JsonConverters::fromArray('string', $o['stringArray']);
if (isset($o['stringList'])) $this->stringList = JsonConverters::fromArray('string', $o['stringList']);
if (isset($o['pocoArray'])) $this->pocoArray = JsonConverters::fromArray('Poco', $o['pocoArray']);
if (isset($o['pocoList'])) $this->pocoList = JsonConverters::fromArray('Poco', $o['pocoList']);
if (isset($o['nullableByteArray'])) $this->nullableByteArray = JsonConverters::fromArray('int', $o['nullableByteArray']);
if (isset($o['nullableByteList'])) $this->nullableByteList = JsonConverters::fromArray('Nullable<Byte>', $o['nullableByteList']);
if (isset($o['nullableDateTimeArray'])) $this->nullableDateTimeArray = JsonConverters::fromArray('DateTime', $o['nullableDateTimeArray']);
if (isset($o['nullableDateTimeList'])) $this->nullableDateTimeList = JsonConverters::fromArray('Nullable<DateTime>', $o['nullableDateTimeList']);
if (isset($o['pocoLookup'])) $this->pocoLookup = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','List<Poco>']), $o['pocoLookup']);
if (isset($o['pocoLookupMap'])) $this->pocoLookupMap = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','List<Dictionary<String,Poco>>']), $o['pocoLookupMap']);
if (isset($o['mapList'])) $this->mapList = JsonConverters::from(JsonConverters::context('Dictionary',genericArgs:['string','List<String>']), $o['mapList']);
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->int)) $o['int'] = $this->int;
if (isset($this->nullableId)) $o['nullableId'] = $this->nullableId;
if (isset($this->long)) $o['long'] = $this->long;
if (isset($this->double)) $o['double'] = $this->double;
if (isset($this->string)) $o['string'] = $this->string;
if (isset($this->dateTime)) $o['dateTime'] = JsonConverters::to('DateTime', $this->dateTime);
if (isset($this->intArray)) $o['intArray'] = JsonConverters::toArray('int', $this->intArray);
if (isset($this->intList)) $o['intList'] = JsonConverters::toArray('int', $this->intList);
if (isset($this->stringArray)) $o['stringArray'] = JsonConverters::toArray('string', $this->stringArray);
if (isset($this->stringList)) $o['stringList'] = JsonConverters::toArray('string', $this->stringList);
if (isset($this->pocoArray)) $o['pocoArray'] = JsonConverters::toArray('Poco', $this->pocoArray);
if (isset($this->pocoList)) $o['pocoList'] = JsonConverters::toArray('Poco', $this->pocoList);
if (isset($this->nullableByteArray)) $o['nullableByteArray'] = JsonConverters::toArray('int', $this->nullableByteArray);
if (isset($this->nullableByteList)) $o['nullableByteList'] = JsonConverters::toArray('Nullable<Byte>', $this->nullableByteList);
if (isset($this->nullableDateTimeArray)) $o['nullableDateTimeArray'] = JsonConverters::toArray('DateTime', $this->nullableDateTimeArray);
if (isset($this->nullableDateTimeList)) $o['nullableDateTimeList'] = JsonConverters::toArray('Nullable<DateTime>', $this->nullableDateTimeList);
if (isset($this->pocoLookup)) $o['pocoLookup'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','List<Poco>']), $this->pocoLookup);
if (isset($this->pocoLookupMap)) $o['pocoLookupMap'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','List<Dictionary<String,Poco>>']), $this->pocoLookupMap);
if (isset($this->mapList)) $o['mapList'] = JsonConverters::to(JsonConverters::context('Dictionary',genericArgs:['string','List<String>']), $this->mapList);
return empty($o) ? new class(){} : $o;
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=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>