import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
Object = TypeVar('Object')
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class SubType:
id: int = 0
name: Optional[str] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class AllTypes(IGet):
id: int = 0
nullable_id: Optional[int] = None
byte: int = 0
short: int = 0
int_: int = field(metadata=config(field_name='int'), default=0)
long: int = 0
u_short: int = 0
u_int: int = 0
u_long: int = 0
float_: float = field(metadata=config(field_name='float'), default=0.0)
double: float = 0.0
decimal: Decimal = decimal.Decimal(0)
string: Optional[str] = None
date_time: datetime.datetime = datetime.datetime(1, 1, 1)
time_span: datetime.timedelta = datetime.timedelta()
date_time_offset: datetime.datetime = datetime.datetime(1, 1, 1)
guid: Optional[str] = None
char: Optional[str] = None
key_value_pair: Optional[KeyValuePair[str, str]] = None
nullable_date_time: Optional[datetime.datetime] = None
nullable_time_span: Optional[datetime.timedelta] = None
string_list: List[str] = field(default_factory=list)
string_array: List[str] = field(default_factory=list)
string_map: Dict[str, str] = field(default_factory=dict)
int_string_map: Dict[int, str] = field(default_factory=dict)
sub_type: Optional[SubType] = None
point: Optional[str] = None
original_name: Optional[str] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Poco:
name: Optional[str] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class AllCollectionTypes:
int_array: List[int] = field(default_factory=list)
int_list: List[int] = field(default_factory=list)
string_array: List[str] = field(default_factory=list)
string_list: List[str] = field(default_factory=list)
poco_array: List[Poco] = field(default_factory=list)
poco_list: List[Poco] = field(default_factory=list)
nullable_byte_array: List[Optional[int]] = field(default_factory=list)
nullable_byte_list: List[int] = field(default_factory=list)
nullable_date_time_array: List[Optional[datetime.datetime]] = field(default_factory=list)
nullable_date_time_list: List[datetime.datetime] = field(default_factory=list)
poco_lookup: Dict[str, List[Poco]] = field(default_factory=dict)
poco_lookup_map: Dict[str, List[Dict[str, Poco]]] = field(default_factory=dict)
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class HelloAllTypesResponse:
result: Optional[str] = None
all_types: Optional[AllTypes] = None
all_collection_types: Optional[AllCollectionTypes] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class HelloAllTypes:
name: Optional[str] = None
all_types: Optional[AllTypes] = None
all_collection_types: Optional[AllCollectionTypes] = None
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/HelloAllTypes HTTP/1.1
Host: blazor-gallery.servicestack.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<HelloAllTypes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
<AllCollectionTypes>
<IntArray xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:int>0</d3p1:int>
</IntArray>
<IntList xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:int>0</d3p1:int>
</IntList>
<NullableByteArray xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:unsignedByte>0</d3p1:unsignedByte>
</NullableByteArray>
<NullableByteList xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:unsignedByte>0</d3p1:unsignedByte>
</NullableByteList>
<NullableDateTimeArray xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:dateTime>0001-01-01T00:00:00</d3p1:dateTime>
</NullableDateTimeArray>
<NullableDateTimeList xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:dateTime>0001-01-01T00:00:00</d3p1:dateTime>
</NullableDateTimeList>
<PocoArray>
<Poco>
<Name>String</Name>
</Poco>
</PocoArray>
<PocoList>
<Poco>
<Name>String</Name>
</Poco>
</PocoList>
<PocoLookup xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringArrayOfPocoB8fmgb81>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>
<Poco>
<Name>String</Name>
</Poco>
</d3p1:Value>
</d3p1:KeyValueOfstringArrayOfPocoB8fmgb81>
</PocoLookup>
<PocoLookupMap xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringArrayOfArrayOfKeyValueOfstringPocoB8fmgb81ty7Ep6D1>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>
<d3p1:ArrayOfKeyValueOfstringPocoB8fmgb81>
<d3p1:KeyValueOfstringPocoB8fmgb81>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>
<Name>String</Name>
</d3p1:Value>
</d3p1:KeyValueOfstringPocoB8fmgb81>
</d3p1:ArrayOfKeyValueOfstringPocoB8fmgb81>
</d3p1:Value>
</d3p1:KeyValueOfstringArrayOfArrayOfKeyValueOfstringPocoB8fmgb81ty7Ep6D1>
</PocoLookupMap>
<StringArray xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</StringArray>
<StringList xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</StringList>
</AllCollectionTypes>
<AllTypes>
<Byte>0</Byte>
<Char>0</Char>
<DateTime>0001-01-01T00:00:00</DateTime>
<DateTimeOffset xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>0001-01-01T00:00:00Z</d3p1:DateTime>
<d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
</DateTimeOffset>
<Decimal>0</Decimal>
<Double>0</Double>
<Float>0</Float>
<Guid>00000000-0000-0000-0000-000000000000</Guid>
<Id>0</Id>
<Int>0</Int>
<IntStringMap xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfintstring>
<d3p1:Key>0</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfintstring>
</IntStringMap>
<KeyValuePair xmlns:d3p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic">
<d3p1:key>String</d3p1:key>
<d3p1:value>String</d3p1:value>
</KeyValuePair>
<Long>0</Long>
<NullableDateTime>0001-01-01T00:00:00</NullableDateTime>
<NullableId>0</NullableId>
<NullableTimeSpan>PT0S</NullableTimeSpan>
<OriginalName>String</OriginalName>
<Point>
<X>0</X>
<Y>0</Y>
</Point>
<Short>0</Short>
<String>String</String>
<StringArray xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</StringArray>
<StringList xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</StringList>
<StringMap xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringstring>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfstringstring>
</StringMap>
<SubType>
<Id>0</Id>
<Name>String</Name>
</SubType>
<TimeSpan>PT0S</TimeSpan>
<UInt>0</UInt>
<ULong>0</ULong>
<UShort>0</UShort>
</AllTypes>
<Name>String</Name>
</HelloAllTypes>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<HelloAllTypesResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
<AllCollectionTypes>
<IntArray xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:int>0</d3p1:int>
</IntArray>
<IntList xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:int>0</d3p1:int>
</IntList>
<NullableByteArray xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:unsignedByte>0</d3p1:unsignedByte>
</NullableByteArray>
<NullableByteList xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:unsignedByte>0</d3p1:unsignedByte>
</NullableByteList>
<NullableDateTimeArray xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:dateTime>0001-01-01T00:00:00</d3p1:dateTime>
</NullableDateTimeArray>
<NullableDateTimeList xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:dateTime>0001-01-01T00:00:00</d3p1:dateTime>
</NullableDateTimeList>
<PocoArray>
<Poco>
<Name>String</Name>
</Poco>
</PocoArray>
<PocoList>
<Poco>
<Name>String</Name>
</Poco>
</PocoList>
<PocoLookup xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringArrayOfPocoB8fmgb81>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>
<Poco>
<Name>String</Name>
</Poco>
</d3p1:Value>
</d3p1:KeyValueOfstringArrayOfPocoB8fmgb81>
</PocoLookup>
<PocoLookupMap xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringArrayOfArrayOfKeyValueOfstringPocoB8fmgb81ty7Ep6D1>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>
<d3p1:ArrayOfKeyValueOfstringPocoB8fmgb81>
<d3p1:KeyValueOfstringPocoB8fmgb81>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>
<Name>String</Name>
</d3p1:Value>
</d3p1:KeyValueOfstringPocoB8fmgb81>
</d3p1:ArrayOfKeyValueOfstringPocoB8fmgb81>
</d3p1:Value>
</d3p1:KeyValueOfstringArrayOfArrayOfKeyValueOfstringPocoB8fmgb81ty7Ep6D1>
</PocoLookupMap>
<StringArray xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</StringArray>
<StringList xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</StringList>
</AllCollectionTypes>
<AllTypes>
<Byte>0</Byte>
<Char>0</Char>
<DateTime>0001-01-01T00:00:00</DateTime>
<DateTimeOffset xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>0001-01-01T00:00:00Z</d3p1:DateTime>
<d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
</DateTimeOffset>
<Decimal>0</Decimal>
<Double>0</Double>
<Float>0</Float>
<Guid>00000000-0000-0000-0000-000000000000</Guid>
<Id>0</Id>
<Int>0</Int>
<IntStringMap xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfintstring>
<d3p1:Key>0</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfintstring>
</IntStringMap>
<KeyValuePair xmlns:d3p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic">
<d3p1:key>String</d3p1:key>
<d3p1:value>String</d3p1:value>
</KeyValuePair>
<Long>0</Long>
<NullableDateTime>0001-01-01T00:00:00</NullableDateTime>
<NullableId>0</NullableId>
<NullableTimeSpan>PT0S</NullableTimeSpan>
<OriginalName>String</OriginalName>
<Point>
<X>0</X>
<Y>0</Y>
</Point>
<Short>0</Short>
<String>String</String>
<StringArray xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</StringArray>
<StringList xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</StringList>
<StringMap xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringstring>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfstringstring>
</StringMap>
<SubType>
<Id>0</Id>
<Name>String</Name>
</SubType>
<TimeSpan>PT0S</TimeSpan>
<UInt>0</UInt>
<ULong>0</ULong>
<UShort>0</UShort>
</AllTypes>
<Result>String</Result>
</HelloAllTypesResponse>