(* Options: Date: 2026-05-13 22:33:34 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: UpdateWidgetConfiguration.* //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 UpdateWidgetConfiguration() = 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 /// ///The widget configuration id (6-character NanoID). /// [] member val Id:String = null with get,set /// ///The widget configuration name. /// [] member val Name:String = null with get,set /// ///Optional slug (URL-friendly identifier). The API will append the last 3 characters of the company ID. Example: 'hairsalon' becomes 'hairsalon-001'. /// [] member val Slug:String = null with get,set /// ///Optional description. /// [] member val Description:String = null with get,set /// ///The widget configuration as a JSON string. Must validate against the schema for SchemaVersion. /// [] member val Configuration:String = null with get,set /// ///Version of the configuration schema this Configuration adheres to. /// [] member val SchemaVersion:Int32 = new Int32() with get,set