' Options: 'Date: 2025-05-10 02:44:09 '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: GetInstructorScheduleRequest.* '''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 Imports AIM Namespace Global Namespace AIM Public Partial Class ScheduleGeneric Public Sub New() Students = New List(Of StudentInfoScheduleGeneric) End Sub Public Overridable Property IsAvailability As Boolean Public Overridable Property Location As String Public Overridable Property StartTime As Date Public Overridable Property EndTime As Date Public Overridable Property Desc As String Public Overridable Property ApptDesc As String Public Overridable Property Color As String Public Overridable Property Area As String Public Overridable Property Virtual As Boolean Public Overridable Property Students As List(Of StudentInfoScheduleGeneric) End Class Public Partial Class StudentInfoGeneric Public Overridable Property StudentName As String Public Overridable Property CustomerName As String Public Overridable Property CustomerNumber As String Public Overridable Property CustomerEmail As String End Class Public Partial Class StudentInfoScheduleGeneric Inherits StudentInfoGeneric Public Overridable Property ClassMemberId As Long Public Overridable Property MarkedPresent As Boolean Public Overridable Property MarkedAbsent As Boolean End Class End Namespace 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 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 ''' '''GetInstructorScheduleRequires active-e Lesson Scheduling Service ''' Public Partial Class GetInstructorScheduleRequest Inherits BaseSecureRequest Implements IReturn(Of GetInstructorScheduleResponse) Public Overridable Property InstructorId As Nullable(Of Integer) Public Overridable Property DateFrom As Nullable(Of Date) Public Overridable Property DateTo As Nullable(Of Date) Public Overridable Property IncludeAvailability As Nullable(Of Boolean) End Class Public Partial Class GetInstructorScheduleResponse Inherits BaseResponse Public Sub New() InstructorSchedule = New List(Of ScheduleGeneric) ScheduleByInstructor = New List(Of ScheduleByInstructor) End Sub Public Overridable Property InstructorSchedule As List(Of ScheduleGeneric) Public Overridable Property InstructorTimeInfo As InstructorTimeInfo Public Overridable Property ScheduleByInstructor As List(Of ScheduleByInstructor) End Class Public Partial Class InstructorTimeInfo Public Overridable Property StartHour As Integer Public Overridable Property StartMinute As Integer Public Overridable Property EndHour As Integer Public Overridable Property EndMinute As Integer Public Overridable Property Increment As Integer End Class Public Partial Class ScheduleByInstructor Public Sub New() InstructorSchedule = New List(Of ScheduleGeneric) End Sub Public Overridable Property InstructorInfo As InstructorInfo Public Overridable Property InstructorSchedule As List(Of ScheduleGeneric) Public Overridable Property InstructorTimeInfo As InstructorTimeInfo End Class End Namespace End Namespace