/* Options: Date: 2025-12-06 05:14:59 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: AgentStateLicenseRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/v1/AgentStateLicense/{AgentRegistrationTempId}", "GET,POST,OPTIONS") public class AgentStateLicenseRequest : IReturn, Codable { public typealias Return = AgentStateLicenseResponse public var agentStateLicense:[AgentStateLicense] = [] public var agentRegistrationTempId:Int? required public init(){} } public class AgentStateLicenseResponse : Codable { public var responseStatus:ResponseStatus? public var agentStateLicense:[AgentStateLicense] = [] required public init(){} } public class AgentStateLicense : Codable { public var agentRegistrationTempId:Int? public var state:String? public var licenseNum:String? required public init(){} }