/* Options: Date: 2025-10-29 14:34:11 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetReferenceTypes.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/externalreferencestypes", "GET") public class GetReferenceTypes : IReturn, ICompany, Codable { public typealias Return = ExternalReferenceTypeQueryResponse /** * The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") public var companyId:String? required public init(){} } public class ExternalReferenceTypeQueryResponse : Codable { public var referenceTypeId:Int? public var referenceTypeName:String? public var referenceTypeDescription:String? required public init(){} } public protocol ICompany { var companyId:String? { get set } }