(* Options: Date: 2026-04-04 04:52:28 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: GetApplianceComponentHelp.* //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 HelpContentModel() = /// ///Content Name - Can be used as a heading/title. /// [] member val Name:String = null with get,set /// ///URL containing the help notes. This will either be a web page or a html blob file containing the information. /// [] member val URL:String = null with get,set /// ///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. /// [] member val IsSnippet:Boolean = new Boolean() with get,set /// ///If true, this content is for external client/users. False means it is a developer note. /// [] member val IsUserFacing:Boolean = new Boolean() with get,set /// ///If you have multiple snippets, this is an order you should display them in. /// [] member val Index:Int32 = new Int32() with get,set /// ///This is the document status of the help content. It will be either draft or final. /// [] member val StatusId:Guid = new Guid() 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 GetApplianceComponentHelpResponse() = /// ///List of help content. /// [] member val HelpContent:ResizeArray = null with get,set /// ///Response Status /// [] member val ResponseStatus:ResponseStatus = null with get,set /// ///Get all help content for the specified UI Appliance Component /// [] [] [] type GetApplianceComponentHelp() = interface IReturn /// ///Appliance Component Id to retrieve help for. /// [] member val ApplianceComponentId:Guid = new Guid() with get,set