Test

<back to all web services

TestUploadWithDto

<?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;
    }
}

PHP TestUploadWithDto DTOs

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

HTTP + JSV

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

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

{
	int: 0,
	nullableId: 0,
	long: 0,
	double: 0,
	string: String,
	dateTime: 0001-01-01,
	intArray: 
	[
		0
	],
	intList: 
	[
		0
	],
	stringArray: 
	[
		String
	],
	stringList: 
	[
		String
	],
	pocoArray: 
	[
		{
			name: String
		}
	],
	pocoList: 
	[
		{
			name: String
		}
	],
	nullableByteArray: 
	[
		0
	],
	nullableByteList: 
	[
		0
	],
	nullableDateTimeArray: 
	[
		0001-01-01
	],
	nullableDateTimeList: 
	[
		0001-01-01
	],
	pocoLookup: 
	{
		String: 
		[
			{
				name: String
			}
		]
	},
	pocoLookupMap: 
	{
		String: 
		[
			{
				String: 
				{
					name: String
				}
			}
		]
	},
	mapList: 
	{
		String: 
		[
			String
		]
	}
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	int: 0,
	nullableId: 0,
	long: 0,
	double: 0,
	string: String,
	dateTime: 0001-01-01,
	intArray: 
	[
		0
	],
	intList: 
	[
		0
	],
	stringArray: 
	[
		String
	],
	stringList: 
	[
		String
	],
	pocoArray: 
	[
		{
			name: String
		}
	],
	pocoList: 
	[
		{
			name: String
		}
	],
	nullableByteArray: 
	[
		0
	],
	nullableByteList: 
	[
		0
	],
	nullableDateTimeArray: 
	[
		0001-01-01
	],
	nullableDateTimeList: 
	[
		0001-01-01
	],
	pocoLookup: 
	{
		String: 
		[
			{
				name: String
			}
		]
	},
	pocoLookupMap: 
	{
		String: 
		[
			{
				String: 
				{
					name: String
				}
			}
		]
	},
	mapList: 
	{
		String: 
		[
			String
		]
	}
}