/* Options: Date: 2026-05-19 09:52:07 SwiftVersion: 5.0 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: GetEventTypes.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/eventTypes", "GET") public class GetEventTypes : IReturn, Codable { public typealias Return = GetEventTypesResponse required public init(){} } public class GetEventTypesResponse : List { required public init(){ super.init() } required public init(from decoder: Decoder) throws { try super.init(from: decoder) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) } } public class EventType : Codable { /** * Booster Event Type */ // @ApiMember(Description="Booster Event Type", IsRequired=true) public var eventType:String /** * Event type translation */ // @ApiMember(Description="Event type translation", IsRequired=true) public var translation:String required public init(){} }