' Options: 'Date: 2024-10-06 10:20:43 '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: DirectorySettingsAndActivePersonLookupRequest.* '''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 DirectorySettingsAndActivePersonLookupRequest Implements IReturn(Of DirectorySettingsAndPersonLookupResponse) Public Overridable Property uuid As String End Class End Namespace Namespace regis.ClassLibrary.Responses Public Partial Class DirectoryPersonLookupResponse Public Overridable Property directory_uuid As String Public Overridable Property name As String Public Overridable Property is_active As Boolean End Class Public Partial Class DirectoryResponse Public Overridable Property directory_uuid As String Public Overridable Property waiver As String Public Overridable Property bday As Nullable(Of Date) Public Overridable Property spouse_bday As Nullable(Of Date) Public Overridable Property spouse_name As String Public Overridable Property wedding_date As Nullable(Of Date) Public Overridable Property kids As String Public Overridable Property home_country As String Public Overridable Property quote As String Public Overridable Property bio As String Public Overridable Property interests As String Public Overridable Property category As String Public Overridable Property field_of_work As String Public Overridable Property church As String End Class Public Partial Class DirectorySettingsAndPersonLookupResponse Public Sub New() person_lookup = New List(Of DirectoryPersonLookupResponse) End Sub Public Overridable Property ResponseStatus As ResponseStatus Public Overridable Property regent_id As Integer Public Overridable Property uuid As String Public Overridable Property directory_settings As DirectoryResponse Public Overridable Property directory_share_settings As DirectoryShareSettingsResponse Public Overridable Property person_lookup As List(Of DirectoryPersonLookupResponse) End Class Public Partial Class DirectoryShareSettingsResponse Public Overridable Property directory_uuid As String Public Overridable Property share_full_name As Boolean Public Overridable Property share_bday As Boolean Public Overridable Property share_home_phone As Boolean Public Overridable Property share_cell_phone As Boolean Public Overridable Property share_email As Boolean Public Overridable Property share_address As Boolean Public Overridable Property share_quote As Boolean Public Overridable Property share_bio As Boolean Public Overridable Property share_interests As Boolean Public Overridable Property share_home_country As Boolean Public Overridable Property share_program As Boolean Public Overridable Property share_picture As Boolean Public Overridable Property share_spouse_name As Boolean Public Overridable Property share_spouse_bday As Boolean Public Overridable Property share_wedding_date As Boolean Public Overridable Property share_kids As Boolean Public Overridable Property share_field_of_work As Boolean Public Overridable Property share_church 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