(* Options: Date: 2025-05-10 07:21:07 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: ShortTermRentalAvailabilityRequest.* //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 AvailableSku() = [] member val SaqPk:Int64 = new Int64() with get,set [] member val Sku:String = null with get,set [] member val Description:String = null with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type ShortTermRentalAvailabilityResponse() = inherit BaseResponse() [] member val IsAvailable:Boolean = new Boolean() with get,set [] member val AvailableSkus:ResizeArray = new ResizeArray() with get,set /// ///ShortTermRentalAvailabilityRequires active-e Short Term Rental Service /// [] [] [] type ShortTermRentalAvailabilityRequest() = 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 /// ///PK of the Scsaqty to lookup. Pass in SkuPk *OR* SasPK *OR* PkhPk *OR* Category and SubCategory /// [] [] member val SaqPk:Nullable = new Nullable() with get,set /// ///PK of the Serial# to lookup. Pass in SkuPk *OR* SasPK *OR* PkhPk *OR* Category and SubCategory /// [] [] member val SasPk:Nullable = new Nullable() with get,set /// ///PK of the Package Deal to lookup. Pass in SkuPk *OR* SasPK *OR* PkhPk *OR* Category and SubCategory /// [] [] member val PkhPk:Nullable = new Nullable() with get,set /// ///Pass in SkuPk *OR* SasPK *OR* PkhPk *OR* Category and SubCategory /// [] [] member val Category:Nullable = new Nullable() with get,set /// ///Pass in SkuPk *OR* SasPK *OR* PkhPk *OR* Category and SubCategory /// [] [] member val SubCategory:Nullable = new Nullable() with get,set /// ///Quantity of item required. Does not apply to serial#s. /// [] [] member val ItemQuantity:Nullable = new Nullable() with get,set