/* Options: Date: 2026-05-19 10:58:17 Version: 8.22 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: ExtendSellOut.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Status { /** @description Unique Identifier of the Sell-out created in Booster */ // @ApiMember(Description="Unique Identifier of the Sell-out created in Booster", IsRequired=true) public id: string; /** @description Unique Identifier of the Sell-out created in Booster */ // @ApiMember(Description="Unique Identifier of the Sell-out created in Booster", IsRequired=true) public description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class StatusWarrantyExtension extends Status { /** @description Information about if a warranty can be retriggered */ // @ApiMember(Description="Information about if a warranty can be retriggered", IsRequired=true) public retriggerEnabled: boolean; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class ExtendSellOutResponse { /** @description ccp substatus information */ // @ApiMember(Description="ccp substatus information", IsRequired=true) public ccpStatus: StatusWarrantyExtension; /** @description ccp main status information */ // @ApiMember(Description="ccp main status information", IsRequired=true) public boosterStatus: Status; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/warranty/{saleDetailId}/extend", "POST") export class ExtendSellOut implements IReturn { /** @description Unique Identifier of the Sell-out created in Booster */ // @ApiMember(Description="Unique Identifier of the Sell-out created in Booster", IsRequired=true) public saleDetailId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ExtendSellOut'; } public getMethod() { return 'POST'; } public createResponse() { return new ExtendSellOutResponse(); } }