(* Options: Date: 2025-08-04 00:00:14 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: ScheduledExchangesPostRequest.* //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 /// ///The OAuthToken token return by AeServices30 /// [] [] member val OAuthToken:String = null with get,set /// ///The Device ID of the Mobile Device. Not used for non-mobile devices. /// [] [] member val DeviceId:String = null with get,set /// ///An identifier for your integration /// [] [] member val AppId:String = null with get,set [] [] type BaseSecureRequest() = inherit BaseRequest() /// ///The Login Token return by the Security API. Required for secured calls. /// [] [] member val Token:String = null with get,set [] [] type FormInput() = /// ///Field name of the Input Field. If linking to an Attribute, this should match the Tag value. /// [] [] member val Key:String = null with get,set /// ///Value of the Input Field. /// [] [] member val Value:String = null with get,set /// ///Whether or not the field is encryped with the C2B encryption key. /// [] [] member val Encrypted:Boolean = new Boolean() with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type ScheduledExchangesPostResponse() = inherit BaseResponse() [] member val ExchangeID:Nullable = new Nullable() with get,set /// ///ScheduledExchangesRequires active-e Contracts Service. /// [] [] [] type ScheduledExchangesPostRequest() = inherit BaseSecureRequest() interface IReturn [] member val Acct:Int32 = new Int32() with get,set [] member val Sub:Int32 = new Int32() with get,set [] member val ExchangedItemID:Int64 = new Int64() with get,set [] member val PostingDate:DateTime = new DateTime() with get,set [] member val ScheduledDate:DateTime = new DateTime() with get,set [] member val NewSku:String = null with get,set [] member val OptionId:Nullable = new Nullable() with get,set [] member val ExchangeNotes:String = null with get,set [] member val Processed:Nullable = new Nullable() with get,set [] member val StatusId:Nullable = new Nullable() with get,set /// ///Key/Value pair only. The 'Encrypted' proprety is not used for this API call. /// [] [] member val FormInputList:ResizeArray = new ResizeArray() with get,set