(* Options: Date: 2025-05-10 05:59:44 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: ShortTermRentalInventoryRequest.* //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 ShortTermRentalInventoryRate() = [] member val HeaderDesc:String = null with get,set [] member val HeaderNotes:String = null with get,set [] member val Desc:String = null with get,set [] member val IntervalType:String = null with get,set [] member val Group:String = null with get,set [] member val Notes:String = null with get,set [] member val Amt:Decimal = new Decimal() with get,set [] member val TimeInterval:Int32 = new Int32() with get,set [] [] type ShortTermRentalInventoryObj() = [] member val Rates:ResizeArray = new ResizeArray() with get,set [] member val AvailableSerialPks:ResizeArray = new ResizeArray() with get,set [] member val SaqPk:Nullable = new Nullable() with get,set [] member val SkuPk:Nullable = new Nullable() with get,set [] member val PkhPk:Nullable = new Nullable() with get,set [] member val Sku:String = null with get,set [] member val Package:String = null with get,set [] member val InvType:String = null with get,set [] member val AvailableQty:Decimal = new Decimal() with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type ShortTermRentalInventoryResponse() = inherit BaseResponse() [] member val Results:ResizeArray = new ResizeArray() with get,set /// ///ShortTermRentalInventoryRequires active-e Short Term Rental Service /// [] [] [] type ShortTermRentalInventoryRequest() = inherit BaseSecureRequest() interface IReturn /// ///Item to lookup. Pass in either this *OR* ItemPk + PkType *OR* Category + SubCategory /// [] [] member val Item:String = null with get,set [] member val LocationCode:String = null with get,set /// ///Key of the item to lookup. Pass in either this plus PkType *OR* Item *OR* Category + SubCategory /// [] [] member val ItemPk:Nullable = new Nullable() with get,set /// ///Type of the key passed in. S for SasPk, Q for SaqPk, P for PkhPk. Pass in either this plus ItemPk *OR* Item *OR* Category + SubCategory /// [] [] member val PkType:String = null with get,set /// ///Pass in either SubCategory + this *OR* Item *OR* ItemPk + PkType /// [] [] member val Category:Nullable = new Nullable() with get,set /// ///Pass in either Category + this *OR* Item *OR* ItemPk + PkType /// [] [] member val SubCategory:Nullable = new Nullable() with get,set