/* Options: Date: 2024-12-15 20:54:16 SwiftVersion: 5.0 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.billiecart.com.au //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: AcceptGuestInvitationRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/users/invite/accept", "POST") public class AcceptGuestInvitationRequest : PostOperationUnTenanted, IReturn { public typealias Return = AcceptGuestInvitationResponse public var token:String? public var password:String? public var firstName:String? public var lastName:String? public var timezone:String? required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case token case password case firstName case lastName case timezone } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) token = try container.decodeIfPresent(String.self, forKey: .token) password = try container.decodeIfPresent(String.self, forKey: .password) firstName = try container.decodeIfPresent(String.self, forKey: .firstName) lastName = try container.decodeIfPresent(String.self, forKey: .lastName) timezone = try container.decodeIfPresent(String.self, forKey: .timezone) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if token != nil { try container.encode(token, forKey: .token) } if password != nil { try container.encode(password, forKey: .password) } if firstName != nil { try container.encode(firstName, forKey: .firstName) } if lastName != nil { try container.encode(lastName, forKey: .lastName) } if timezone != nil { try container.encode(timezone, forKey: .timezone) } } } public class AcceptGuestInvitationResponse : Codable { public var responseStatus:ResponseStatus? required public init(){} } public class PostOperationUnTenanted : IPost, Codable { required public init(){} }