/* Options: Date: 2026-05-19 10:58:45 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: TransferStockBulk.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Item { /** @description Article Code of the item to be transferred */ // @ApiMember(Description="Article Code of the item to be transferred", IsRequired=true) public articleCode: string; /** @description Quantity of the the item to be transferred */ // @ApiMember(Description="Quantity of the the item to be transferred", IsRequired=true) public quantity: number; /** @description Serial Numbers of the item to be transferred */ // @ApiMember(Description="Serial Numbers of the item to be transferred") public serialNumbers: string[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ItemResponse { /** @description Article Code of the item response */ // @ApiMember(Description="Article Code of the item response", IsRequired=true) public articleCode: string; /** @description Status of Stock Transfer: 1 means done, 2 means might take a while because consignment transfers need to be approved by SAP */ // @ApiMember(Description="Status of Stock Transfer: 1 means done, 2 means might take a while because consignment transfers need to be approved by SAP", IsRequired=true) public stockTransferStatusId: number; /** @description Errors of items */ // @ApiMember(Description="Errors of items", IsRequired=true) public errors: Lookup[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class TransferStockBulkResponse { /** @description Response of items */ // @ApiMember(Description="Response of items", IsRequired=true) public items: ItemResponse[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/stock/{brand}/transferBulk", "POST") export class TransferStockBulk implements IReturn { /** @description Brand Trigram */ // @ApiMember(Description="Brand Trigram", IsRequired=true) public brand: string; /** @description POS of the stock origin */ // @ApiMember(Description="POS of the stock origin", IsRequired=true) public posCodeOrigin: string; /** @description POS of the stock destination */ // @ApiMember(Description="POS of the stock destination", IsRequired=true) public posCodeDestination: string; /** @description Items to be transferred */ // @ApiMember(Description="Items to be transferred", IsRequired=true) public items: Item[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'TransferStockBulk'; } public getMethod() { return 'POST'; } public createResponse() { return new TransferStockBulkResponse(); } }