All Verbs | /testdata/AllCollectionTypes |
---|
import Foundation
import ServiceStack
public class TestDataAllCollectionTypes : Codable
{
required public init(){}
}
public class AllCollectionTypes : Codable
{
public var intArray:[Int] = []
public var intList:[Int] = []
public var stringArray:[String] = []
public var stringList:[String] = []
public var floatArray:[Float] = []
public var doubleList:[Double] = []
public var byteArray:[UInt8] = []
public var charArray:[String] = []
public var decimalList:[Double] = []
public var pocoArray:[Poco] = []
public var pocoList:[Poco] = []
public var pocoLookup:[String:[Poco]] = [:]
public var pocoLookupMap:[String:[[String:Poco]]] = [:]
required public init(){}
}
public class Poco : Codable
{
public var name:String
required public init(){}
}
Swift TestDataAllCollectionTypes DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
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: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"intArray":[0],"intList":[0],"stringArray":["String"],"stringList":["String"],"floatArray":[0],"doubleList":[0],"byteArray":"AA==","charArray":["\u0000"],"decimalList":[0],"pocoArray":[{"name":"String"}],"pocoList":[{"name":"String"}],"pocoLookup":{"String":[{"name":"String"}]},"pocoLookupMap":{"String":[{"String":{"name":"String"}}]}}