' Options: 'Date: 2024-06-02 01:50:31 'Version: 8.23 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://testapi.bokamera.se ' '''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: CreateApiKeySuperAdminUser.* '''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 System.Globalization Imports ServiceStack.Data Imports BokaMera.API.ServiceModel.Interfaces Imports BokaMera.API.ServiceModel.Dtos Namespace Global Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class CreateApiKeySuperAdminUser Implements ICompany Public Sub New() RedirectUrls = New List(Of String) WebOrigins = New List(Of String) DefaultClientScopes = New List(Of String) OptionalClientScopes = New List(Of String) End Sub ''' '''Enter the companyId for the customer ''' Public Overridable Property CompanyId As Nullable(Of Guid) Public Overridable Property FirstName As String Public Overridable Property LastName As String Public Overridable Property ClientId As String Public Overridable Property RedirectUrls As List(Of String) Public Overridable Property ContactEmail As String Public Overridable Property ContactPhone As String Public Overridable Property Notes As String Public Overridable Property WebOrigins As List(Of String) Public Overridable Property DefaultClientScopes As List(Of String) Public Overridable Property OptionalClientScopes As List(Of String) End Class End Namespace Namespace BokaMera.API.ServiceModel.Interfaces Public Interface ICompany Property CompanyId As Nullable(Of Guid) End Interface End Namespace End Namespace