All Verbs | /testdata/AllCollectionTypes |
---|
<?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 AllCollectionTypes implements JsonSerializable
{
public function __construct(
/** @var int[] */
public array $intArray=[],
/** @var array<int>|null */
public ?array $intList=null,
/** @var string[] */
public array $stringArray=[],
/** @var array<string>|null */
public ?array $stringList=null,
/** @var float[] */
public array $floatArray=[],
/** @var array<float>|null */
public ?array $doubleList=null,
/** @var ByteArray|null */
public ?ByteArray $byteArray=null,
/** @var string[] */
public array $charArray=[],
/** @var array<float>|null */
public ?array $decimalList=null,
/** @var Poco[] */
public array $pocoArray=[],
/** @var array<Poco>|null */
public ?array $pocoList=null,
/** @var array<string,Poco[]>|null */
public ?array $pocoLookup=null,
/** @var array<string,array<string,Poco>[]>|null */
public ?array $pocoLookupMap=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
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['floatArray'])) $this->floatArray = JsonConverters::fromArray('float', $o['floatArray']);
if (isset($o['doubleList'])) $this->doubleList = JsonConverters::fromArray('float', $o['doubleList']);
if (isset($o['byteArray'])) $this->byteArray = JsonConverters::from('ByteArray', $o['byteArray']);
if (isset($o['charArray'])) $this->charArray = JsonConverters::fromArray('string', $o['charArray']);
if (isset($o['decimalList'])) $this->decimalList = JsonConverters::fromArray('float', $o['decimalList']);
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['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']);
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
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->floatArray)) $o['floatArray'] = JsonConverters::toArray('float', $this->floatArray);
if (isset($this->doubleList)) $o['doubleList'] = JsonConverters::toArray('float', $this->doubleList);
if (isset($this->byteArray)) $o['byteArray'] = JsonConverters::to('ByteArray', $this->byteArray);
if (isset($this->charArray)) $o['charArray'] = JsonConverters::toArray('string', $this->charArray);
if (isset($this->decimalList)) $o['decimalList'] = JsonConverters::toArray('float', $this->decimalList);
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->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);
return empty($o) ? new class(){} : $o;
}
}
class TestDataAllCollectionTypes implements JsonSerializable
{
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
return empty($o) ? new class(){} : $o;
}
}
PHP TestDataAllCollectionTypes DTOs
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 /testdata/AllCollectionTypes HTTP/1.1
Host: test.servicestack.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<TestDataAllCollectionTypes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Test.ServiceInterface" />
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <AllCollectionTypes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Test.ServiceModel.Types"> <ByteArray>AA==</ByteArray> <CharArray xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:char>0</d2p1:char> </CharArray> <DecimalList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:decimal>0</d2p1:decimal> </DecimalList> <DoubleList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:double>0</d2p1:double> </DoubleList> <FloatArray xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:float>0</d2p1:float> </FloatArray> <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> <PocoArray> <Poco> <Name>String</Name> </Poco> </PocoArray> <PocoList> <Poco> <Name>String</Name> </Poco> </PocoList> <PocoLookup xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:KeyValueOfstringArrayOfPocoSxVl28_Sd> <d2p1:Key>String</d2p1:Key> <d2p1:Value> <Poco> <Name>String</Name> </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> <Name>String</Name> </d2p1:Value> </d2p1:KeyValueOfstringPocoSxVl28_Sd> </d2p1:ArrayOfKeyValueOfstringPocoSxVl28_Sd> </d2p1:Value> </d2p1:KeyValueOfstringArrayOfArrayOfKeyValueOfstringPocoSxVl28_Sdty7Ep6D1> </PocoLookupMap> <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> </AllCollectionTypes>