/* Options: Date: 2026-04-04 01:21:54 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetThemeSettings.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Get all theme settings for the appliance and current context including title, colours and footer settings */ // @Route("/themesettings") // @Api(Description="Get all theme settings for the appliance and current context including title, colours and footer settings") public class GetThemeSettings : IReturn, IPublicServiceModel, Codable { public typealias Return = GetSettingsResponse /** * Appliance to retrieve theme settings for */ // @ApiMember(Description="Appliance to retrieve theme settings for", Name="ApplianceId") public var applianceId:String? public var subdomainName:String? required public init(){} } // @ApiResponse(Description="List of settings") public class GetSettingsResponse : Codable { public var settings:[SettingModel]? public var responseStatus:ResponseStatus? required public init(){} } public protocol IPublicServiceModel { var applianceId:String? { get set } var subdomainName:String? { get set } } public class SettingModel : Codable { public var settingId:String? public var settingName:String? public var settingValue:String? required public init(){} }