' Options: 'Date: 2026-04-04 01:03:40 'Version: 8.52 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://pfapi.pstpf.com.au/api ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: GetApplianceComponentHelp.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports Eros.Subtle.Canvara.WebAPIModel.Models Imports Eros.Subtle.Canvara.WebAPIModel.ServiceModel Namespace Global Namespace Eros.Subtle.Canvara.WebAPIModel.Models Public Partial Class HelpContentModel ''' '''Content Name - Can be used as a heading/title. ''' Public Overridable Property Name As String ''' '''URL containing the help notes. This will either be a web page or a html blob file containing the information. ''' Public Overridable Property URL As String ''' '''If true, the URL is a blob file and details should be shown in a pop up or tooltip, if false, this is a full URL to a web page and should be opened in a new tab. ''' Public Overridable Property IsSnippet As Boolean ''' '''If true, this content is for external client/users. False means it is a developer note. ''' Public Overridable Property IsUserFacing As Boolean ''' '''If you have multiple snippets, this is an order you should display them in. ''' Public Overridable Property Index As Integer ''' '''This is the document status of the help content. It will be either draft or final. ''' Public Overridable Property StatusId As Guid End Class End Namespace Namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel ''' '''Get all help content for the specified UI Appliance Component ''' Public Partial Class GetApplianceComponentHelp Implements IReturn(Of GetApplianceComponentHelpResponse) ''' '''Appliance Component Id to retrieve help for. ''' Public Overridable Property ApplianceComponentId As Guid End Class Public Partial Class GetApplianceComponentHelpResponse ''' '''List of help content. ''' Public Overridable Property HelpContent As List(Of HelpContentModel) ''' '''Response Status ''' Public Overridable Property ResponseStatus As ResponseStatus End Class End Namespace Namespace ServiceStack Public Partial Class ResponseStatus Implements IMeta Public Overridable Property ErrorCode As String Public Overridable Property Message As String Public Overridable Property StackTrace As String Public Overridable Property Errors As List(Of ResponseError) Public Overridable Property Meta As Dictionary(Of String, String) Implements IMeta.Meta End Class End Namespace End Namespace