(* Options: Date: 2026-05-19 09:51:13 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ExportMovement.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.Stock.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type MovementsRequest() = /// ///Brand /// [] member val brand:String = null with get,set /// ///POS Legacy /// [] member val posCodes:ResizeArray = new ResizeArray() with get,set /// ///Movement Type Ids /// [] member val movementTypeIds:ResizeArray = new ResizeArray() with get,set /// ///Search Key (Article or SerialNumber) /// [] member val searchKey:String = null with get,set /// ///In Stock Since date from /// [] member val dateFrom:Nullable = new Nullable() with get,set /// ///In Stock Since date to /// [] member val dateTo:Nullable = new Nullable() with get,set /// ///Sort by date could be: 'DateDESC' or 'DateASC' (default is descending) /// [] member val sortBy:String = null with get,set [] type ExportMovementResponse() = /// ///Unique Identifier of the Export Request created /// [] member val asyncTaskId:Guid = new Guid() with get,set [] [] type ExportMovement() = inherit MovementsRequest() interface IReturn /// ///Export Request ID of the API Consumers /// [] member val downloadRequestId:String = null with get,set