/* Options: Date: 2026-05-19 09:49:19 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: CreateTransferRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Richemont.Booster2.PublicApi.Stock.ServiceModel; namespace Richemont.Booster2.PublicApi.Stock.ServiceModel { [Route("/stock/{brand}/transferRequest", "POST")] public partial class CreateTransferRequest { /// ///Brand Trigram, e.g. CAR, IWC /// [ApiMember(Description="Brand Trigram, e.g. CAR, IWC", IsRequired=true)] public virtual string brand { get; set; } /// ///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 virtual string posCodeFrom { get; set; } /// ///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 virtual string posCodeTo { get; set; } /// ///Legacy Article Code of the item to be transferred /// [ApiMember(Description="Legacy Article Code of the item to be transferred", IsRequired=true)] public virtual string articleCode { get; set; } /// ///Notes /// [ApiMember(Description="Notes")] public virtual string notes { get; set; } } }