/* Options: Date: 2024-12-15 19:53:20 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: RemoveOrganisationMemberRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/organisations/{Id}/members/{UserAccountId}", "DELETE") public class RemoveOrganisationMemberRequest : DeleteOperationUnTenanted, IReturn { public typealias Return = RemoveOrganisationMemberResponse public var id:String? public var userAccountId:String? required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case id case userAccountId } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) id = try container.decodeIfPresent(String.self, forKey: .id) userAccountId = try container.decodeIfPresent(String.self, forKey: .userAccountId) } 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) } if userAccountId != nil { try container.encode(userAccountId, forKey: .userAccountId) } } } public class RemoveOrganisationMemberResponse : Codable { public var responseStatus:ResponseStatus? public var organisation:Organisation? required public init(){} } public class DeleteOperationUnTenanted : IDelete, Codable { required public init(){} } public class Organisation : IIdentifiableResource, Codable { public var displayName:String? public var owners:[String] = [] public var isDefault:Bool? public var id:String? required public init(){} } public protocol IIdentifiableResource { var id:String? { get set } }