(* Options: Date: 2026-04-04 06:49:14 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetThemeSettings.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type IPublicServiceModel = abstract ApplianceId:Guid with get,set abstract SubdomainName:String with get,set [] type SettingModel() = member val SettingId:Guid = new Guid() with get,set member val SettingName:String = null with get,set member val SettingValue:String = null with get,set [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = null with get,set [] member val Meta:Dictionary = null with get,set [] [] type GetSettingsResponse() = member val Settings:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get all theme settings for the appliance and current context including title, colours and footer settings /// [] [] [] type GetThemeSettings() = interface IReturn /// ///Appliance to retrieve theme settings for /// [] member val ApplianceId:Guid = new Guid() with get,set member val SubdomainName:String = null with get,set