' Options: 'Date: 2025-05-10 01:57:36 '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: GetSchedulingGroupingsRequest.* '''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 ''' '''GetSchedulingGroupingsRequires active-e Lesson Scheduling Service ''' Public Partial Class GetSchedulingGroupingsRequest Inherits BaseRequest Implements IReturn(Of GetSchedulingGroupingsResponse) ''' '''Grouping ID to look up. If sent, all other parameters will be ignored. ''' Public Overridable Property GroupingId As Nullable(Of Long) ''' '''If sent, only groupings with at least one lesson type taught by the sent instructor will be returned. ''' Public Overridable Property InstructorId As Nullable(Of Integer) ''' '''If sent, only groupings 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 groupings containing Private Lesson Types will be returned. If Group, only groupings containing Group Lesson Types will be returned. ''' Public Overridable Property MembershipType As String End Class Public Partial Class GetSchedulingGroupingsResponse Inherits BaseResponse Public Sub New() Groupings = New List(Of GroupingInfo) End Sub Public Overridable Property Groupings As List(Of GroupingInfo) Public Partial Class GroupingInfo Public Overridable Property Id As Long Public Overridable Property Desc As String End Class End Class End Namespace End Namespace