/* Options: Date: 2025-12-06 09:41:31 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: ProjectTypeRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/v1/ProjectType", "GET,POST,PUT,DELETE,OPTIONS") // @Route("/v1/ProjectType/{ProjectTypeID}", "GET,POST,PUT,DELETE,OPTIONS") public class ProjectTypeRequest : IReturn, Codable { public typealias Return = ProjectTypeResponse public var projectTypeID:Int? public var projectType:[ProjectType] = [] required public init(){} } public class ProjectTypeResponse : Codable { public var responseStatus:ResponseStatus? public var projectType:[ProjectType] = [] required public init(){} } public class ProjectType : Codable { public var projectTypeID:Int16? public var projectType:String? required public init(){} }