(* Options: Date: 2025-05-10 02:53:36 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: PostServiceTicketRequest.* //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 FormInput() = /// ///Field Name of the Input Field /// [] [] 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 CcInfo() = /// ///Token returned from processor /// [] [] member val TokenStr:String = null with get,set /// ///Card Type (VISA, MCARD, AMEX, DSCVR) /// [] [] member val CardType:String = null with get,set /// ///Last four of the card /// [] [] member val LastFour:String = null with get,set /// ///Expiration Date of the Card. (MM/YY) /// [] [] member val Expiration:String = null with get,set /// ///Reason the card is on file. /// [] [] member val ReasonOnFile:String = null with get,set /// ///ID of the existing Token Record in AIM, if applicable /// [] [] member val TokenPk:Nullable = new Nullable() with get,set /// ///Is this the customer's primary card? Defaults to false. /// [] [] member val Primary:Nullable = new Nullable() with get,set [] [] type CustomerInfo() = /// ///The WebId of the customer. Optional. /// [] [] member val WebId:Nullable = new Nullable() with get,set /// ///Name of the customer. /// [] [] member val Name:String = null with get,set /// ///Address line 1 of the customer /// [] [] member val Addr1:String = null with get,set /// ///Address line 2 of the customer /// [] [] member val Addr2:String = null with get,set /// ///City of the customer /// [] [] member val City:String = null with get,set /// ///State/Province of the customer /// [] [] member val St:String = null with get,set /// ///Zip code of the customer /// [] [] member val Zip:String = null with get,set /// ///Country of the customer /// [] [] member val Country:String = null with get,set /// ///Phone number of the customer /// [] [] member val Phone:String = null with get,set /// ///Email address of the customer. Required. /// [] [] member val Email:String = null with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type PostServiceTicketResponse() = inherit BaseResponse() [] member val WebRef:String = null with get,set /// ///PostServiceTicketRequires active-e Service Tickets Service /// [] [] [] type PostServiceTicketRequest() = inherit BaseSecureRequest() interface IReturn /// ///Online reference number of this appointment /// [] [] member val RefNumber:String = null with get,set /// ///Serial number of the item to be serviced /// [] [] member val SerialNumber:String = null with get,set /// ///The AIM customer account # of the customer. Optional. /// [] [] member val CustomerAcct:Nullable = new Nullable() with get,set /// ///Customer Information /// [] [] member val CustomerInfo:CustomerInfo = null with get,set /// ///Additional Customer or Appointment info /// [] [] member val FormInputList:ResizeArray = new ResizeArray() with get,set /// ///Credit Card info of the customer for this appointment /// [] [] member val CcInfo:CcInfo = null with get,set /// ///Notes on this appointment /// [] [] member val Notes:String = null with get,set [] member val VoiceRecording:String = null with get,set /// ///Description of the item to be serviced /// [] [] member val ItemDescription:String = null with get,set