(* Options: Date: 2026-08-27 07:10:20 Version: 10.08 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: GetStockLookup.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.Purchase.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type Pos() = /// ///POS Code /// [] member val posCode:String = null with get,set /// ///Name of the POS /// [] member val name:String = null with get,set /// ///City of the POS /// [] member val city:String = null with get,set /// ///Address of the POS /// [] member val address:String = null with get,set /// ///Country of the POS /// [] member val country:String = null with get,set /// ///Brand of the POS /// [] member val brand:String = null with get,set [] type Pos() = /// ///Name of the POS /// [] member val name:String = null with get,set /// ///POS Code /// [] member val posCode:String = null with get,set /// ///Pos Code To Be Displayed /// [] member val posCodeToBeDisplayed:String = null with get,set /// ///Country of the POS /// [] member val country:String = null with get,set /// ///City of the POS /// [] member val city:String = null with get,set /// ///Postal Code /// [] member val postalCode:String = null with get,set /// ///State /// [] member val state:String = null with get,set /// ///Street /// [] member val street:String = null with get,set [] type GetStockLookupResponse() = /// ///Exists in Stock? /// [] member val existsInStock:Boolean = new Boolean() with get,set /// ///Stock Locations / POSes /// [] member val stockLocation:Pos = null with get,set [] [] type GetStockLookup() = interface IReturn /// ///Brand /// [] member val brand:String = null with get,set /// ///Article Code /// [] member val articleCode:String = null with get,set /// ///Serial Number /// [] member val serialNumber:String = null with get,set /// ///Storage Location Identifier e.g. CPO, NEW, REP /// [] member val storageLocationId:String = null with get,set /// ///Inventory segment e.g. CPO or null /// [] member val inventorySegment:String = null with get,set