/* Options: Date: 2026-05-19 10:57:50 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: GetPhoneTypes.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/phoneTypes", "GET") public class GetPhoneTypes : IReturn, Codable { public typealias Return = GetPhoneTypesResponse required public init(){} } public class GetPhoneTypesResponse : 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 PhoneType : Codable { /** * Booster Phone Type */ // @ApiMember(Description="Booster Phone Type", IsRequired=true) public var phoneType:String /** * Phone type description translation */ // @ApiMember(Description="Phone type description translation", IsRequired=true) public var translation:String required public init(){} }