' Options: 'Date: 2024-06-02 08:41:26 '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: CustomFieldSlotsQuery.* '''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 CustomFieldSlotsQuery Implements IReturn(Of CustomFieldSlotsQueryResponse) Implements ICompany ''' '''Company id to find custom fields for ''' Public Overridable Property CompanyId As Nullable(Of Guid) ''' '''Table to which the field belongs ''' Public Overridable Property Table As String ''' '''If you want to receive only free slots (not occupied). ''' Public Overridable Property FreeSlots As Nullable(Of Boolean) End Class Public Partial Class CustomFieldSlotsQueryResponse ''' '''Table to which the field belongs ''' Public Overridable Property Table As String ''' '''Custom field id ''' Public Overridable Property Id As Integer ''' '''Custom field column name ''' Public Overridable Property Name As String ''' '''The field datatype ''' Public Overridable Property Datatype As String ''' '''If the slot is free or occupied ''' Public Overridable Property Occupied As Boolean End Class End Namespace Namespace BokaMera.API.ServiceModel.Interfaces Public Interface ICompany Property CompanyId As Nullable(Of Guid) End Interface End Namespace End Namespace