/* Options: Date: 2026-05-19 09:52:00 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateTransferRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/stock/{brand}/transferRequest", Verbs="POST") open class CreateTransferRequest { /** * Brand Trigram, e.g. CAR, IWC */ @ApiMember(Description="Brand Trigram, e.g. CAR, IWC", IsRequired=true) var brand:String? = null /** * 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) var posCodeFrom:String? = null /** * 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) var posCodeTo:String? = null /** * Legacy Article Code of the item to be transferred */ @ApiMember(Description="Legacy Article Code of the item to be transferred", IsRequired=true) var articleCode:String? = null /** * Notes */ @ApiMember(Description="Notes") var notes:String? = null }