/* Options: Date: 2026-08-27 07:12:06 SwiftVersion: 6.0 Version: 10.08 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: PatchSellout.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //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(){} }