(* Options: Date: 2024-06-26 11:38:13 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: SystemSettingQuery.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open System.IO [] type LanguageResponse() = member val Id:String = null with get,set member val Name:String = null with get,set [] type SystemSettingsResponse() = /// ///The country options to choose from /// [] member val LanguageOptions:ResizeArray = new ResizeArray() with get,set /// ///If the booking is active or not /// [] member val Active:Boolean = new Boolean() with get,set /// ///If the booking is not active, what message to show to the customers /// [] member val InactiveMessage:String = null with get,set /// ///If the company should be visible in search results on hompage /// [] member val Searchable:Boolean = new Boolean() with get,set /// ///If you have a google analytics account and want to track your customers behaviors. /// [] member val GATrackingId:String = null with get,set /// ///If you have a google Ads Conversion Id account and want to track your customers behaviors. /// [] member val GoogleAdsConversionId:String = null with get,set /// ///If you have a LinkedIn account and want to track your customers behaviors. /// [] member val LinkedinTagId:String = null with get,set /// ///If you have a Google Ads Conversion Label and want to track your customers behaviors. /// [] member val GoogleAdsConversionLabel:String = null with get,set /// ///If you have a google tag manager account and want to track your customers behaviors. /// [] member val GTMTrackingId:String = null with get,set /// ///If you have a facebook account and want to track your customers behaviors. /// [] member val FacebookPixelId:String = null with get,set /// ///If the company should be visible on the marketplace /// [] member val ShowOnMarketplace:Boolean = new Boolean() with get,set /// ///If you want your customers to be albe to change language on your homepage /// [] member val MultiLanguage:Boolean = new Boolean() with get,set /// ///If you want your own written text on your homepage to be translated using google analytics when a user changes language /// [] member val EnableAPITranslation:Boolean = new Boolean() with get,set /// ///What is the standard language your homepage information is written in. Select from the different countries, ie. SE,NO,EN /// [] member val DefaultLanguage:String = null with get,set [] [] [] [] type SystemSettingQuery() = interface IReturn /// ///If you want to include the language options to select from /// [] member val IncludeLanguageOptions:Boolean = new Boolean() with get,set