' Options: 'Date: 2024-12-29 02:35:26 '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: PersonSideBarRequest.* '''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 PersonSideBarRequest Implements IReturn(Of PersonSideBarResponse) Public Overridable Property uuid As String End Class End Namespace Namespace regis.ClassLibrary.Responses Public Partial Class PersonSideBarResponse Public Sub New() programs = New List(Of StudentProgramSimpleResponse) End Sub Public Overridable Property ResponseStatus As ResponseStatus Public Overridable Property regent_id As Integer Public Overridable Property ubc_id As Nullable(Of Integer) Public Overridable Property regent_login As String Public Overridable Property uuid As String Public Overridable Property first_name As String Public Overridable Property middle_name As String Public Overridable Property last_name As String Public Overridable Property preferred_name As String Public Overridable Property dob As Nullable(Of Date) Public Overridable Property citizenship As String Public Overridable Property citizenship_other As String Public Overridable Property permanent_resident As String Public Overridable Property addr1 As String Public Overridable Property addr2 As String Public Overridable Property city As String Public Overridable Property state As String Public Overridable Property code As String Public Overridable Property country As String Public Overridable Property email As String Public Overridable Property phone_home As String Public Overridable Property phone_cell As String Public Overridable Property phone_bus As String Public Overridable Property imageBase64 As String Public Overridable Property tax_number As String Public Overridable Property programs As List(Of StudentProgramSimpleResponse) End Class Public Partial Class StudentProgramSimpleResponse Public Overridable Property ResponseStatus As ResponseStatus Public Overridable Property regent_id As Integer Public Overridable Property uuid As String Public Overridable Property program_id As Integer Public Overridable Property program_code As String Public Overridable Property program_name As String Public Overridable Property concentration_code As String Public Overridable Property concentration_name As String Public Overridable Property start_date As Nullable(Of Date) Public Overridable Property end_date As Nullable(Of Date) Public Overridable Property catalog As String Public Overridable Property is_active As Boolean Public Overridable Property is_graduated As Boolean 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