' Options: 'Date: 2024-10-06 10:30:18 '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: OrganizationCreateRequest.* '''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.Requests Imports regis.ClassLibrary.Responses Namespace Global Namespace regis.ClassLibrary.Requests Public Partial Class OrganizationCreateRequest Implements IReturn(Of OrganizationResponse) Public Overridable Property organization_name As String Public Overridable Property email 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 phone_home As String Public Overridable Property phone_cell As String Public Overridable Property phone_bus As String Public Overridable Property authorizing_uuid As String End Class End Namespace Namespace regis.ClassLibrary.Responses Public Partial Class OrganizationResponse Public Overridable Property ResponseStatus As ResponseStatus Public Overridable Property organization_id As Integer Public Overridable Property organization_name As String Public Overridable Property email 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 phone_cell As String Public Overridable Property phone_bus As String Public Overridable Property phone_home As String Public Overridable Property is_institution As Boolean Public Overridable Property is_vendor As Boolean Public Overridable Property is_re 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