' Options: 'Date: 2025-04-07 06:51:46 '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: StudentGraduationsRequest.* '''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 StudentGraduationsRequest Implements IReturn(Of List(Of StudentGraduationResponse)) Public Overridable Property year As Integer End Class End Namespace Namespace regis.ClassLibrary.Responses Public Partial Class StudentGraduationProgramResponse Public Overridable Property program_code As String Public Overridable Property concentration_code As String Public Overridable Property program_details As String Public Overridable Property comments As String End Class Public Partial Class StudentGraduationResponse Public Sub New() applied_programs = New List(Of StudentGraduationProgramResponse) End Sub Public Overridable Property ResponseStatus As ResponseStatus Public Overridable Property regent_id As Integer Public Overridable Property uuid As String Public Overridable Property first_name As String Public Overridable Property preferred_name As String Public Overridable Property middle_name As String Public Overridable Property last_name As String Public Overridable Property email As String Public Overridable Property phonetic_first_name As String Public Overridable Property phonetic_middle_name As String Public Overridable Property phonetic_last_name As String Public Overridable Property placement As String Public Overridable Property placement_other 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 country As String Public Overridable Property code As String Public Overridable Property citizenship As String Public Overridable Property citizenship_other As String Public Overridable Property permanent_resident As String Public Overridable Property previous_degrees As String Public Overridable Property gown_size As Nullable(Of Integer) Public Overridable Property project_title As String Public Overridable Property supervisor As String Public Overridable Property is_attending As Boolean Public Overridable Property is_hood_requested As Boolean Public Overridable Property is_hood_paid As Boolean Public Overridable Property is_paid As Boolean Public Overridable Property is_late As Boolean Public Overridable Property year As Nullable(Of Integer) Public Overridable Property comments As String Public Overridable Property current_status As String Public Overridable Property current_status_date As Nullable(Of Date) Public Overridable Property added_date As Nullable(Of Date) Public Overridable Property applied_programs As List(Of StudentGraduationProgramResponse) 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