(* Options: Date: 2025-05-10 03:03:16 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://active-ewebservice.biz/aeservices30/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetLocationsRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace AIM open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type BaseRequest() = /// ///This is your AIM API Key provided by Tri-Tech /// [] [] member val ApiKey:String = null with get,set [] [] member val OAuthToken:String = null with get,set [] [] type BaseSecureRequest() = inherit BaseRequest() /// /// /// [] [] member val Token:String = null with get,set /// /// /// [] [] member val DeviceId:String = null with get,set /// /// /// [] [] member val AppId:String = null with get,set [] [] type LocationInfo() = [] member val Id:Int64 = new Int64() with get,set [] member val Desc:String = null with get,set [] member val ShortDesc:String = null with get,set [] member val Region:String = null with get,set [] member val Latitude:Decimal = new Decimal() with get,set [] member val Longitude:Decimal = new Decimal() with get,set [] member val InStorePickup:String = null with get,set [] member val Active:Boolean = new Boolean() with get,set [] member val CashSaleAcct:Nullable = new Nullable() with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type GetLocationsResponse() = inherit BaseResponse() [] member val Locations:ResizeArray = new ResizeArray() with get,set /// ///GetLocationsRequires active-e Inventory Service or active-e Customer Service or active 3rd Party E-Commerce or active-e Vortx E-Commerce. /// [] [] [] type GetLocationsRequest() = inherit BaseSecureRequest() interface IReturn /// ///Location lookup. If sent, all other parameters will be ignored. /// [] [] member val LocationId:Nullable = new Nullable() with get,set [] member val InStorePickup:Nullable = new Nullable() with get,set /// ///Sent in Conjunction with InStorePickup boolean. Can be set to CONTRACT or ORDER. /// [] [] member val InStorePickupType:String = null with get,set