import Foundation
import ServiceStack
public class QueryRockstarAudit : QueryDbTenant<RockstarAuditTenant, RockstarAuto>
{
public var id:Int?
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case id
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
id = try container.decodeIfPresent(Int.self, forKey: .id)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if id != nil { try container.encode(id, forKey: .id) }
}
}
public class QueryDbTenant<From : Codable, Into : Codable> : QueryDb2<From, Into>
{
required public init(){ super.init() }
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
}
}
public class RockstarAuditTenant : AuditBase
{
public var tenantId:Int
public var id:Int
public var firstName:String
public var lastName:String
public var age:Int?
public var dateOfBirth:Date
public var dateDied:Date?
public var livingStatus:LivingStatus
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case tenantId
case id
case firstName
case lastName
case age
case dateOfBirth
case dateDied
case livingStatus
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
tenantId = try container.decodeIfPresent(Int.self, forKey: .tenantId)
id = try container.decodeIfPresent(Int.self, forKey: .id)
firstName = try container.decodeIfPresent(String.self, forKey: .firstName)
lastName = try container.decodeIfPresent(String.self, forKey: .lastName)
age = try container.decodeIfPresent(Int.self, forKey: .age)
dateOfBirth = try container.decodeIfPresent(Date.self, forKey: .dateOfBirth)
dateDied = try container.decodeIfPresent(Date.self, forKey: .dateDied)
livingStatus = try container.decodeIfPresent(LivingStatus.self, forKey: .livingStatus)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if tenantId != nil { try container.encode(tenantId, forKey: .tenantId) }
if id != nil { try container.encode(id, forKey: .id) }
if firstName != nil { try container.encode(firstName, forKey: .firstName) }
if lastName != nil { try container.encode(lastName, forKey: .lastName) }
if age != nil { try container.encode(age, forKey: .age) }
if dateOfBirth != nil { try container.encode(dateOfBirth, forKey: .dateOfBirth) }
if dateDied != nil { try container.encode(dateDied, forKey: .dateDied) }
if livingStatus != nil { try container.encode(livingStatus, forKey: .livingStatus) }
}
}
public enum LivingStatus : String, Codable
{
case Alive
case Dead
}
public class RockstarAuto : RockstarBase
{
public var id:Int
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case id
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
id = try container.decodeIfPresent(Int.self, forKey: .id)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if id != nil { try container.encode(id, forKey: .id) }
}
}
public class RockstarBase : Codable
{
public var firstName:String
public var lastName:String
public var age:Int?
public var dateOfBirth:Date
public var dateDied:Date?
public var livingStatus:LivingStatus
required public init(){}
}
public class Poco : Codable
{
public var name: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/QueryRockstarAudit HTTP/1.1
Host: test.servicestack.net
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"id":0,"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":[{"id":0,"firstName":"String","lastName":"String","age":0,"dateOfBirth":"\/Date(-62135596800000-0000)\/","dateDied":"\/Date(-62135596800000-0000)\/","livingStatus":"Alive"}],"meta":{"String":"String"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}