/* Options: Date: 2026-05-19 09:52:31 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: ExportSellOut.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ProductCategory { /** @description Brand Category ID */ // @ApiMember(Description="Brand Category ID") public brandCategoryId: string; /** @description Grand Category ID */ // @ApiMember(Description="Grand Category ID", IsRequired=true) public grandCategoryId: string; /** @description Master Category ID */ // @ApiMember(Description="Master Category ID") public masterCategoryId: string; /** @description Category ID */ // @ApiMember(Description="Category ID") public categoryId: string; /** @description Sub Category ID */ // @ApiMember(Description="Sub Category ID") public subCategoryId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ProductCategory { /** @description Brand Category ID */ // @ApiMember(Description="Brand Category ID") public brandCategoryId: string; /** @description Grand Category ID */ // @ApiMember(Description="Grand Category ID") public grandCategoryId: string; /** @description Master Category ID */ // @ApiMember(Description="Master Category ID") public masterCategoryId: string; /** @description Category ID */ // @ApiMember(Description="Category ID") public categoryId: string; /** @description Sub Category ID */ // @ApiMember(Description="Sub Category ID") public subCategoryId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ExportSellOutResponse { /** @description Unique Identifier of the Export Request created */ // @ApiMember(Description="Unique Identifier of the Export Request created", IsRequired=true) public asyncTaskId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/warranty/{brand}/export", "POST") export class ExportSellOut implements IReturn { /** @description Brand Trigram, e.g. CAR, IWC */ // @ApiMember(Description="Brand Trigram, e.g. CAR, IWC", IsRequired=true) public brand: string; /** @description Pos Legacy IDs / Codes */ // @ApiMember(Description="Pos Legacy IDs / Codes", IsRequired=true) public posCodes: string[]; /** @description Date To */ // @ApiMember(Description="Date To") public dateTo?: string; /** @description Date From */ // @ApiMember(Description="Date From") public dateFrom?: string; /** @description Item Article Codes, both Global and Local */ // @ApiMember(Description="Item Article Codes, both Global and Local") public articleCodes: string[]; /** @description Product Categories */ // @ApiMember(Description="Product Categories") public productCategories: ProductCategory[]; /** @description Sale Representative Email */ // @ApiMember(Description="Sale Representative Email") public saleRepresentativeEmails: string[]; /** @description Sellout Type: 'sellout' for sales, 'return' for returns, null for both */ // @ApiMember(Description="Sellout Type: 'sellout' for sales, 'return' for returns, null for both") public selloutType: string; /** @description Type: 'consigned' or 'standard', null for both */ // @ApiMember(Description="Type: 'consigned' or 'standard', null for both") public type: string; /** @description Possible warranty extention status IDs, 1 (Activated), 2 (Requested), 3 (Refused), 4 (Error) */ // @ApiMember(Description="Possible warranty extention status IDs, 1 (Activated), 2 (Requested), 3 (Refused), 4 (Error)") public warrantyExtensionStatusIds: number[]; /** @description Export Request ID of the API Consumers */ // @ApiMember(Description="Export Request ID of the API Consumers", IsRequired=true) public downloadRequestId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ExportSellOut'; } public getMethod() { return 'POST'; } public createResponse() { return new ExportSellOutResponse(); } }