' Options: 'Date: 2025-05-10 04:19:38 '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: C2BGetDistrictInfoRequest.* '''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 C2BDistrictGeneric Public Overridable Property DistrictName As String Public Overridable Property SchoolCount As Integer Public Overridable Property TeacherCount As Integer Public Overridable Property Topic As String Public Overridable Property Id As Long 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 ''' '''C2BGetDistrictInfoRequires active-e Contracts Service. ''' Public Partial Class C2BGetDistrictInfoRequest Inherits BaseRequest Implements IReturn(Of C2BGetDistrictInfoResponse) ''' '''If sent, only districts with schools of the sent plan code will be returned. ''' Public Overridable Property PlanCode As String ''' '''ID of the Instrument record. Optional. ''' Public Overridable Property RinPk As Nullable(Of Long) ''' '''Optional Request Type. Valid values are Contract and Shipping. ''' Public Overridable Property RequestType As String End Class Public Partial Class C2BGetDistrictInfoResponse Inherits BaseResponse Public Sub New() Districts = New List(Of C2BDistrictGeneric) End Sub Public Overridable Property Districts As List(Of C2BDistrictGeneric) Public Overridable Property TeacherTableExists As Boolean End Class End Namespace End Namespace