' Options: 'Date: 2024-06-26 11:29:21 '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: SystemSettingQuery.* '''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 System.IO Imports BokaMera.API.ServiceModel.Dtos Namespace Global Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class LanguageResponse Public Overridable Property Id As String Public Overridable Property Name As String End Class Public Partial Class SystemSettingQuery Implements IReturn(Of SystemSettingsResponse) ''' '''If you want to include the language options to select from ''' Public Overridable Property IncludeLanguageOptions As Boolean End Class Public Partial Class SystemSettingsResponse Public Sub New() LanguageOptions = New List(Of LanguageResponse) End Sub ''' '''The country options to choose from ''' Public Overridable Property LanguageOptions As List(Of LanguageResponse) ''' '''If the booking is active or not ''' Public Overridable Property Active As Boolean ''' '''If the booking is not active, what message to show to the customers ''' Public Overridable Property InactiveMessage As String ''' '''If the company should be visible in search results on hompage ''' Public Overridable Property Searchable As Boolean ''' '''If you have a google analytics account and want to track your customers behaviors. ''' Public Overridable Property GATrackingId As String ''' '''If you have a google Ads Conversion Id account and want to track your customers behaviors. ''' Public Overridable Property GoogleAdsConversionId As String ''' '''If you have a LinkedIn account and want to track your customers behaviors. ''' Public Overridable Property LinkedinTagId As String ''' '''If you have a Google Ads Conversion Label and want to track your customers behaviors. ''' Public Overridable Property GoogleAdsConversionLabel As String ''' '''If you have a google tag manager account and want to track your customers behaviors. ''' Public Overridable Property GTMTrackingId As String ''' '''If you have a facebook account and want to track your customers behaviors. ''' Public Overridable Property FacebookPixelId As String ''' '''If the company should be visible on the marketplace ''' Public Overridable Property ShowOnMarketplace As Boolean ''' '''If you want your customers to be albe to change language on your homepage ''' Public Overridable Property MultiLanguage As Boolean ''' '''If you want your own written text on your homepage to be translated using google analytics when a user changes language ''' Public Overridable Property EnableAPITranslation As Boolean ''' '''What is the standard language your homepage information is written in. Select from the different countries, ie. SE,NO,EN ''' Public Overridable Property DefaultLanguage As String End Class End Namespace End Namespace