/* Options: Date: 2025-11-04 05:22:36 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: DeleteReferenceWithReferenceType.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/references/{CompanyId}/{OwnerId}/{ReferenceType}", "DELETE") public class DeleteReferenceWithReferenceType : IReturn, Codable { public typealias Return = ReferenceQueryResponse /** * The company id */ // @ApiMember(Description="The company id", IsRequired=true, ParameterType="path") public var companyId:String? /** * Internal Id of the reference. Example could be the Booking Id */ // @ApiMember(Description="Internal Id of the reference. Example could be the Booking Id", ParameterType="path") public var ownerId:String? /** * Reference type of the reference */ // @ApiMember(Description="Reference type of the reference", ParameterType="path") public var referenceType:String? required public init(){} } public class ReferenceQueryResponse : Codable { public var companyId:String? public var id:String? public var ownerId:String? public var referenceType:String? public var referenceTypeId:Int? public var externalData:String? public var updated:Date? public var created:Date? public var createdBy:String? public var updatedBy:String? public var responseStatus:ResponseStatus? required public init(){} }