/* Options: Date: 2026-05-19 10:45:22 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: GetPromoterType.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/warranty/promotertype", "GET") public class GetPromoterType : IReturn, Codable { public typealias Return = GetPromoterTypeResponse required public init(){} } public class GetPromoterTypeResponse : 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 PromoterTypeItem : Codable { /** * Code of Promoter Type */ // @ApiMember(Description="Code of Promoter Type", IsRequired=true) public var code:String /** * Description of Promoter Type */ // @ApiMember(Description="Description of Promoter Type", IsRequired=true) public var Description:String required public init(){} }