/* Options: Date: 2025-12-06 07:09:40 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: EventTypeRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/v1/EventType", "GET") // @Route("/v1/EventType/{EventTypeId}", "GET") public class EventTypeRequest : IReturn, Codable { public typealias Return = EventTypeResponse public var eventType:[EventType] = [] required public init(){} } public class EventTypeResponse : Codable { public var responseStatus:ResponseStatus? public var eventType:[EventType] = [] required public init(){} } public class EventType : Codable { public var eventTypeId:Int? public var eventTypeName:String? public var eventCategory:String? public var isActive:Bool? required public init(){} }