/* Options: Date: 2026-05-19 09:51:36 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: CreateTransferRequest.* //ExcludeTypes: //DefaultImports: */ // @Route("/stock/{brand}/transferRequest", "POST") export class CreateTransferRequest { /** @description Brand Trigram, e.g. CAR, IWC */ // @ApiMember(Description="Brand Trigram, e.g. CAR, IWC", IsRequired=true) public brand: string; /** @description POS Code of the transfer Source POS, e.g. ES100:102048 */ // @ApiMember(Description="POS Code of the transfer Source POS, e.g. ES100:102048", IsRequired=true) public posCodeFrom: string; /** @description POS Code of the transfer Target POS, e.g. ES100:101469 */ // @ApiMember(Description="POS Code of the transfer Target POS, e.g. ES100:101469", IsRequired=true) public posCodeTo: string; /** @description Legacy Article Code of the item to be transferred */ // @ApiMember(Description="Legacy Article Code of the item to be transferred", IsRequired=true) public articleCode: string; /** @description Notes */ // @ApiMember(Description="Notes") public notes: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CreateTransferRequest'; } public getMethod() { return 'POST'; } public createResponse() {} }