(* Options: Date: 2025-05-10 02:44:10 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: ShippingAddressLookupRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace AIM.WebService 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 ShipToInfo() = [] member val Id:Int64 = new Int64() with get,set [] member val Name:String = null with get,set [] member val Attention:String = null with get,set [] member val Address1:String = null with get,set [] member val Address2:String = null with get,set [] member val City:String = null with get,set [] member val State:String = null with get,set [] member val Zip:String = null with get,set [] member val Country:String = null with get,set [] member val Email:String = null with get,set [] member val Phone:String = null with get,set [] member val Phone2:String = null with get,set [] member val Notes:String = null with get,set [] member val Primary:Boolean = new Boolean() with get,set [] member val TaxLoc:String = null with get,set [] member val Active:Boolean = new Boolean() with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type ShippingAddressLookupResponse() = inherit BaseResponse() [] member val ShipTos:ResizeArray = new ResizeArray() with get,set /// ///ShippingAddressLookupRequires active-e Customer Service. /// [] [] [] type ShippingAddressLookupRequest() = inherit BaseSecureRequest() interface IReturn /// ///Pass in this parameter if you want to lookup all shipping addresses linked to a customer. Not required if using a customer login. Do not pass in this parameter if passing in the ShipId parameter. /// [] [] member val Acct:Nullable = new Nullable() with get,set /// ///Use this parameter to lookup a single Shipping Address with this ID. Do not pass in this parameter if passing in the Acct parameter. /// [] [] member val ShipId:Nullable = new Nullable() with get,set