' Options: 'Date: 2025-05-10 04:58:06 'Version: 8.40 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://active-ewebservice.biz/aeservices30/api ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: ShortTermRentalAvailabilityRequest.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports AIM.WebService Namespace Global Namespace AIM.WebService Public Partial Class AvailableSku Public Overridable Property SaqPk As Long Public Overridable Property Sku As String Public Overridable Property Description As String End Class Public Partial Class BaseRequest ''' '''This is your AIM API Key provided by Tri-Tech ''' Public Overridable Property ApiKey As String Public Overridable Property OAuthToken As String End Class Public Partial Class BaseResponse ''' ''' ''' Public Overridable Property Status As BaseResponseResult End Class Public Partial Class BaseSecureRequest Inherits BaseRequest ''' ''' ''' Public Overridable Property Token As String ''' ''' ''' Public Overridable Property DeviceId As String ''' ''' ''' Public Overridable Property AppId As String End Class ''' '''ShortTermRentalAvailabilityRequires active-e Short Term Rental Service ''' Public Partial Class ShortTermRentalAvailabilityRequest Inherits BaseSecureRequest Implements IReturn(Of ShortTermRentalAvailabilityResponse) ''' '''Date/Time the item is to be picked up. ''' Public Overridable Property PickupDate As Date ''' '''Date/Time the item is to be returned. ''' Public Overridable Property ReturnDate As Date ''' '''PK of the Scsaqty to lookup. Pass in SkuPk *OR* SasPK *OR* PkhPk *OR* Category and SubCategory ''' Public Overridable Property SaqPk As Nullable(Of Long) ''' '''PK of the Serial# to lookup. Pass in SkuPk *OR* SasPK *OR* PkhPk *OR* Category and SubCategory ''' Public Overridable Property SasPk As Nullable(Of Long) ''' '''PK of the Package Deal to lookup. Pass in SkuPk *OR* SasPK *OR* PkhPk *OR* Category and SubCategory ''' Public Overridable Property PkhPk As Nullable(Of Long) ''' '''Pass in SkuPk *OR* SasPK *OR* PkhPk *OR* Category and SubCategory ''' Public Overridable Property Category As Nullable(Of Integer) ''' '''Pass in SkuPk *OR* SasPK *OR* PkhPk *OR* Category and SubCategory ''' Public Overridable Property SubCategory As Nullable(Of Integer) ''' '''Quantity of item required. Does not apply to serial#s. ''' Public Overridable Property ItemQuantity As Nullable(Of Decimal) End Class Public Partial Class ShortTermRentalAvailabilityResponse Inherits BaseResponse Public Sub New() AvailableSkus = New List(Of AvailableSku) End Sub Public Overridable Property IsAvailable As Boolean Public Overridable Property AvailableSkus As List(Of AvailableSku) End Class End Namespace End Namespace