import Foundation
import ServiceStack
public class QueryCustomers : QueryDb<Customer>
{
public var customerId:String
public var companyNameContains:String
public var countryIn:[String]
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case customerId
case companyNameContains
case countryIn
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
customerId = try container.decodeIfPresent(String.self, forKey: .customerId)
companyNameContains = try container.decodeIfPresent(String.self, forKey: .companyNameContains)
countryIn = try container.decodeIfPresent([String].self, forKey: .countryIn) ?? []
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if customerId != nil { try container.encode(customerId, forKey: .customerId) }
if companyNameContains != nil { try container.encode(companyNameContains, forKey: .companyNameContains) }
if countryIn != nil { try container.encode(countryIn, forKey: .countryIn) }
}
}
public class Customer : Codable
{
public var customerId:String
public var companyName:String
public var address:String
public var city:String
public var region:String
public var postalCode:String
public var country:String
public var phone:String
public var fax:String
public var orders:[Order] = []
required public init(){}
}
public class Order : Codable
{
public var orderId:Int
public var customerId:String
public var orderDate:Date
public var total:Double
required public init(){}
}
public class GithubRepo : Codable
{
public var id:Int
public var name:String
public var Description:String
public var homepage:String
public var language:String
public var watchers_Count:Int
public var stargazes_Count:Int
public var forks_Count:Int
public var open_Issues_Count:Int
public var size:Int
public var full_Name:String
public var created_at:Date
public var pushed_At:Date?
public var updated_At:Date?
public var has_issues:Bool
public var has_Downloads:Bool
public var has_Wiki:Bool
public var has_Pages:Bool
public var fork:Bool
public var owner:GithubUser
public var svn_Url:String
public var mirror_Url:String
public var url:String
public var ssh_Url:String
public var html_Url:String
public var clone_Url:String
public var git_Url:String
public var `private`:Bool
required public init(){}
}
public class GithubUser : Codable
{
public var id:Int
public var login:String
public var avatar_Url:String
public var url:String
public var followers:Int?
public var following:Int?
public var type:String
public var public_Gists:Int?
public var location:String
public var company:String
public var html_Url:String
public var public_Repos:Int?
public var created_At:Date?
public var blog:String
public var email:String
public var name:String
public var hireable:Bool?
public var gravatar_Id:String
public var bio:String
required public init(){}
}
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 /jsonl/reply/QueryCustomers HTTP/1.1
Host: sharpscript.net
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"customerId":"String","companyNameContains":"String","countryIn":["String"],"skip":0,"take":0,"orderBy":"String","orderByDesc":"String","include":"String","fields":"String","meta":{"String":"String"}}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"offset":0,"total":0,"results":[{"customerId":"String","companyName":"String","address":"String","city":"String","region":"String","postalCode":"String","country":"String","phone":"String","fax":"String","orders":[{"orderId":0,"customerId":"String","orderDate":"\/Date(-62135596800000-0000)\/","total":0}]}],"meta":{"String":"String"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}