/* Options: Date: 2026-08-27 08:07:48 Version: 10.08 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PatchSellout.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } export class PatchSelloutResponse { public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/warranty/{saleId}", "PATCH") export class PatchSellout implements IReturn { /** @description 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 saleId: number; /** @description Emails of Sale Representatives */ // @ApiMember(Description="Emails of Sale Representatives") public saleRepresentativeEmails?: string[]; /** @description Promoter Type ID */ // @ApiMember(Description="Promoter Type ID") public promoterTypeId?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'PatchSellout'; } public getMethod() { return 'PATCH'; } public createResponse() { return new PatchSelloutResponse(); } }