/* Options: Date: 2026-05-19 10:56:42 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: CreateEquipmentWarranty.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class CreateEquipmentWarrantyResponse { /** @description Equipment number */ // @ApiMember(Description="Equipment number", IsRequired=true) public equipment: string; /** @description Warranty type */ // @ApiMember(Description="Warranty type", IsRequired=true) public warrantyType: string; /** @description Master warranty */ // @ApiMember(Description="Master warranty", IsRequired=true) public masterWarranty: string; /** @description Warranty start date */ // @ApiMember(Description="Warranty start date", IsRequired=true) public warrantyStartDate: string; /** @description Warranty end date */ // @ApiMember(Description="Warranty end date") public warrantyEndDate: string; /** @description Warranty creation date */ // @ApiMember(Description="Warranty creation date", IsRequired=true) public warrantyCreationDate: string; /** @description Warranty creation time */ // @ApiMember(Description="Warranty creation time", IsRequired=true) public warrantyCreationTime: string; /** @description Object number (ERP) */ // @ApiMember(Description="Object number (ERP)", IsRequired=true) public objectNumber: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/warranty/equipment", "POST") export class CreateEquipmentWarranty implements IReturn { /** @description Brand Trigram, e.g. CAR, IWC; compulsory only if articleCode is not provided */ // @ApiMember(Description="Brand Trigram, e.g. CAR, IWC; compulsory only if articleCode is not provided") public brand: string; /** @description Richemont POS code */ // @ApiMember(Description="Richemont POS code", IsRequired=true) public posCode: string; /** @description Equipment */ // @ApiMember(Description="Equipment", IsRequired=true) public equipment: string; /** @description Warranty type */ // @ApiMember(Description="Warranty type", IsRequired=true) public warrantyType: string; /** @description Date of the warranty start date e.g. 2025-06-01 */ // @ApiMember(Description="Date of the warranty start date e.g. 2025-06-01", IsRequired=true) public warrantyStartDate: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CreateEquipmentWarranty'; } public getMethod() { return 'POST'; } public createResponse() { return new CreateEquipmentWarrantyResponse(); } }