(* Options: Date: 2024-09-21 00:30:53 Version: 8.30 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: ApInvoiceRequest.* //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 ApObject() = [] member val Po:String = null with get,set [] member val Data:String = null with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type ApInvoiceResponse() = inherit BaseResponse() /// ///ApInvoiceRequires active-e Supplier Connections.This endpoint takes AP/Invoices and/or AP ASNs. /// [] [] [] type ApInvoiceRequest() = inherit BaseRequest() interface IReturn [] member val VendorId:String = null with get,set [] member val Invoices:ResizeArray = new ResizeArray() with get,set [] member val ASNs:ResizeArray = new ResizeArray() with get,set