(* Options: Date: 2025-08-04 00:14:52 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: ShortTermRentalReservationRequest.* //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 PackageVariantItem() = [] member val Model:String = null with get,set [] member val Sku:String = null with get,set [] [] type ShortTermRentalItem() = /// ///SasPk, SaqPk, or PkhPk /// [] [] member val Pk:Int64 = new Int64() with get,set /// ///S for SerialNumber, P for Package deal. Empty for normal inventory. /// [] [] member val ItemType:String = null with get,set /// ///Quantity of item required. Does not apply to serial#s. /// [] [] member val ItemQuantity:Nullable = new Nullable() with get,set /// ///Item rate. This is per item, so the total is this multiplied by ItemQuantity. /// [] [] member val ItemRate:Nullable = new Nullable() with get,set [] member val Notes:String = null with get,set [] member val PackageVariantItems:ResizeArray = new ResizeArray() with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type ShortTermRentalReservationResponse() = inherit BaseResponse() [] member val RefNumber:String = null with get,set /// ///ShortTermRentalReservationRequires active-e Short Term Rental Service /// [] [] [] type ShortTermRentalReservationRequest() = inherit BaseSecureRequest() interface IReturn /// ///Date/Time the item is to be picked up. /// [] [] member val PickupDate:DateTime = new DateTime() with get,set /// ///Date/Time the item is to be returned. /// [] [] member val ReturnDate:DateTime = new DateTime() with get,set /// ///Account of the customer making the reservation /// [] [] member val CustomerAcct:Int32 = new Int32() with get,set [] member val Items:ResizeArray = new ResizeArray() with get,set [] member val Notes:String = null with get,set