(* Options: Date: 2026-05-14 01:09:16 Version: 10.05 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: WidgetConfigurationQuery.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open ServiceStack.Data open System.Net open System.Net.Http.Headers [] type ICompany = abstract CompanyId:Nullable with get,set [] type WidgetConfigurationResponse() = member val Id:String = null with get,set member val CompanyId:Guid = new Guid() with get,set member val Name:String = null with get,set member val Slug:String = null with get,set member val Description:String = null with get,set member val Configuration:String = null with get,set member val SchemaVersion:Int32 = new Int32() with get,set member val CreatedDate:DateTime = new DateTime() with get,set member val UpdatedDate:Nullable = new Nullable() with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] [] [] type WidgetConfigurationQuery() = interface IReturn> /// ///The company id, if empty will use the company id for the user you are logged in with. /// [] member val CompanyId:Nullable = new Nullable() with get,set /// ///Optional slug to fetch a single configuration (e.g., 'hairsalon-001'). If provided, ignores other filter parameters. /// [] member val Slug:String = null with get,set /// ///Filter by schema version. /// [] member val SchemaVersion:Nullable = new Nullable() with get,set /// ///Number of records to skip /// [] member val Skip:Nullable = new Nullable() with get,set /// ///Number of records to take /// [] member val Take:Nullable = new Nullable() with get,set /// ///Sort field /// [] member val OrderBy:String = null with get,set