/* Options: Date: 2026-05-19 10:56:01 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: PatchSellout.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/warranty/{saleId}", "PATCH") public class PatchSellout : IReturn, Codable { public typealias Return = PatchSelloutResponse /** * Unique Identifier of the Sell-out item created in Booster */ // @ApiMember(Description="Unique Identifier of the Sell-out item created in Booster", IsRequired=true) public var saleId:Int /** * Emails of Sale Representatives */ // @ApiMember(Description="Emails of Sale Representatives") public var saleRepresentativeEmails:[String] = [] /** * Promoter Type ID */ // @ApiMember(Description="Promoter Type ID") public var promoterTypeId:String required public init(){} } public class PatchSelloutResponse : Codable { required public init(){} }