' Options: 'Date: 2024-10-06 10:30:39 'Version: 8.22 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://data.regent-college.edu ' '''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: StudentExemptionCredentialsRequest.* '''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 regis.ClassLibrary.Responses Imports regis.ClassLibrary.Requests Namespace Global Namespace regis.ClassLibrary.Requests Public Partial Class StudentExemptionCredentialsRequest Implements IReturn(Of StudentExemptionCredentialsResponse) Public Overridable Property uuid As String End Class End Namespace Namespace regis.ClassLibrary.Responses Public Partial Class StudentExemptionCredentialResponse Public Overridable Property ResponseStatus As ResponseStatus Public Overridable Property uuid As String Public Overridable Property exemption_uuid As String Public Overridable Property course_name As String Public Overridable Property title As String Public Overridable Property credit_value As Nullable(Of Decimal) Public Overridable Property added_by As String Public Overridable Property added_date As Nullable(Of Date) Public Overridable Property changed_by As String Public Overridable Property changed_date As Nullable(Of Date) End Class Public Partial Class StudentExemptionCredentialsResponse Public Sub New() studentExemptionCredentials = New List(Of StudentExemptionCredentialResponse) End Sub Public Overridable Property ResponseStatus As ResponseStatus Public Overridable Property regent_id As Integer Public Overridable Property uuid As String Public Overridable Property studentExemptionCredentials As List(Of StudentExemptionCredentialResponse) End Class End Namespace Namespace ServiceStack Public Partial Class ResponseStatus Implements IMeta Public Sub New() Errors = New List(Of ResponseError) Meta = New Dictionary(Of String, String) End Sub Public Overridable Property ErrorCode As String Public Overridable Property Message As String Public Overridable Property StackTrace As String Public Overridable Property Errors As List(Of ResponseError) Public Overridable Property Meta As Dictionary(Of String, String) End Class End Namespace End Namespace