' Options: 'Date: 2025-05-10 00:51:15 '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: GetSchedulingTypesRequest.* '''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 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 ''' '''GetSchedulingTypesRequires active-e Lesson Scheduling Service ''' Public Partial Class GetSchedulingTypesRequest Inherits BaseRequest Implements IReturn(Of GetSchedulingTypesResponse) ''' '''Type ID to look up. If sent, all other parameters will be ignored. ''' Public Overridable Property TypeId As Nullable(Of Long) ''' '''If sent, only types in the sent grouping will be returned. ''' Public Overridable Property GroupingId As Nullable(Of Long) ''' '''If sent, only types taught by the sent instructor will be returned. ''' Public Overridable Property InstructorId As Nullable(Of Integer) ''' '''If sent, only types taught at the sent location will be returned. ''' Public Overridable Property LocationId As Nullable(Of Long) ''' '''If sent, should be Private or Group. If Private, only Private Lesson Types will be returned. If Group, only Group Lesson Types will be returned. ''' Public Overridable Property MembershipType As String End Class Public Partial Class GetSchedulingTypesResponse Inherits BaseResponse Public Sub New() Types = New List(Of TypeInfo) End Sub Public Overridable Property Types As List(Of TypeInfo) Public Partial Class TypeInfo Public Overridable Property Id As Long Public Overridable Property Desc As String Public Overridable Property Length As Integer Public Overridable Property Topic As String Public Overridable Property RecurranceType As String Public Overridable Property MembershipType As String Public Overridable Property Rate As Decimal Public Overridable Property GroupingId As Nullable(Of Long) Public Overridable Property GroupingDesc As String End Class End Class End Namespace End Namespace