import Foundation
import ServiceStack
public class UpdateRockstarAuditTenant : UpdateAuditTenantBase<RockstarAuditTenant, RockstarWithIdAndResultResponse>, IHasSessionId
{
public var sessionId:String
public var id:Int
public var firstName:String
public var livingStatus:LivingStatus?
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case sessionId
case id
case firstName
case livingStatus
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
sessionId = try container.decodeIfPresent(String.self, forKey: .sessionId)
id = try container.decodeIfPresent(Int.self, forKey: .id)
firstName = try container.decodeIfPresent(String.self, forKey: .firstName)
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 sessionId != nil { try container.encode(sessionId, forKey: .sessionId) }
if id != nil { try container.encode(id, forKey: .id) }
if firstName != nil { try container.encode(firstName, forKey: .firstName) }
if livingStatus != nil { try container.encode(livingStatus, forKey: .livingStatus) }
}
}
public class UpdateAuditTenantBase<Table : Codable, TResponse : Codable> : UpdateAuditBase<Table, TResponse>
{
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 UpdateAuditBase<Table : Codable, TResponse : Codable> : IUpdateDb<Table>, Codable
{
required public init(){}
}
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 RockstarWithIdAndResultResponse : Codable
{
public var id:Int
public var result:RockstarAuto
public var responseStatus:ResponseStatus
required public init(){}
}
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(){}
}
Swift UpdateRockstarAuditTenant 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 /jsonl/reply/UpdateRockstarAuditTenant HTTP/1.1
Host: test.servicestack.net
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"sessionId":"String","id":0,"firstName":"String","livingStatus":"Alive"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"id":0,"result":{"id":0,"firstName":"String","lastName":"String","age":0,"dateOfBirth":"\/Date(-62135596800000-0000)\/","dateDied":"\/Date(-62135596800000-0000)\/","livingStatus":"Alive"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}