Test

<back to all web services

CreateRockstarAuditTenant

import Foundation
import ServiceStack

public class CreateRockstarAuditTenant : CreateAuditTenantBase<RockstarAuditTenant, RockstarWithIdAndResultResponse>, IHasSessionId
{
    public var sessionId:String
    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 sessionId
        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)
        sessionId = try container.decodeIfPresent(String.self, forKey: .sessionId)
        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 sessionId != nil { try container.encode(sessionId, forKey: .sessionId) }
        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 class CreateAuditTenantBase<Table : Codable, TResponse : Codable> : CreateAuditBase<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 CreateAuditBase<Table : Codable, TResponse : Codable> : ICreateDb<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 CreateRockstarAuditTenant DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /xml/reply/CreateRockstarAuditTenant HTTP/1.1 
Host: test.servicestack.net 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<CreateRockstarAuditTenant xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Test.ServiceModel">
  <Age>0</Age>
  <DateDied>0001-01-01T00:00:00</DateDied>
  <DateOfBirth>0001-01-01T00:00:00</DateOfBirth>
  <FirstName>String</FirstName>
  <LastName>String</LastName>
  <LivingStatus>Alive</LivingStatus>
  <SessionId>String</SessionId>
</CreateRockstarAuditTenant>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<RockstarWithIdAndResultResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Test.ServiceModel">
  <Id>0</Id>
  <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
    <d2p1:ErrorCode>String</d2p1:ErrorCode>
    <d2p1:Message>String</d2p1:Message>
    <d2p1:StackTrace>String</d2p1:StackTrace>
    <d2p1:Errors>
      <d2p1:ResponseError>
        <d2p1:ErrorCode>String</d2p1:ErrorCode>
        <d2p1:FieldName>String</d2p1:FieldName>
        <d2p1:Message>String</d2p1:Message>
        <d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:KeyValueOfstringstring>
            <d5p1:Key>String</d5p1:Key>
            <d5p1:Value>String</d5p1:Value>
          </d5p1:KeyValueOfstringstring>
        </d2p1:Meta>
      </d2p1:ResponseError>
    </d2p1:Errors>
    <d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringstring>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>String</d3p1:Value>
      </d3p1:KeyValueOfstringstring>
    </d2p1:Meta>
  </ResponseStatus>
  <Result>
    <Age>0</Age>
    <DateDied>0001-01-01T00:00:00</DateDied>
    <DateOfBirth>0001-01-01T00:00:00</DateOfBirth>
    <FirstName>String</FirstName>
    <LastName>String</LastName>
    <LivingStatus>Alive</LivingStatus>
    <Id>0</Id>
  </Result>
</RockstarWithIdAndResultResponse>