(* Options: Date: 2025-05-10 03:49:05 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: GetTaxAuthoritiesRequest.* //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 TaxAuthoritityInfo() = [] 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 City:String = null with get,set [] member val County:String = null with get,set [] member val ZipCode:String = null with get,set [] member val GeoCode:String = null with get,set [] member val TaxRate1:Decimal = new Decimal() with get,set [] member val TaxRate2:Decimal = new Decimal() with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type GetTaxAuthoritiesResponse() = inherit BaseResponse() [] member val TaxAuthorities:ResizeArray = new ResizeArray() with get,set /// ///GetTaxAuthoritiesRequires active-e Customer Service. /// [] [] [] type GetTaxAuthoritiesRequest() = inherit BaseSecureRequest() interface IReturn /// ///Tax Authority lookup. If sent, all other parameters will be ignored. /// [] [] member val TaxAuthorityId:Nullable = new Nullable() with get,set