/* Options: Date: 2026-05-19 10:52:10 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: DeleteEquipmentWarrantyPartner.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class DeleteEquipmentWarrantyPartnerResponse { public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/partner/warranty/equipment/{brand}/{posCode}/{cpoSelloutId}", "DELETE") export class DeleteEquipmentWarrantyPartner implements IReturn { /** @description Brand Trigram, e.g. CAR, IWC */ // @ApiMember(Description="Brand Trigram, e.g. CAR, IWC") public brand: string; /** @description Richemont POS code */ // @ApiMember(Description="Richemont POS code", IsRequired=true) public posCode: string; /** @description Cpo sellout Id, e.g a0RbW000000qIyXUAU */ // @ApiMember(Description="Cpo sellout Id, e.g a0RbW000000qIyXUAU", IsRequired=true) public cpoSelloutId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteEquipmentWarrantyPartner'; } public getMethod() { return 'DELETE'; } public createResponse() { return new DeleteEquipmentWarrantyPartnerResponse(); } }