' Options: 'Date: 2026-04-04 04:53:05 '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: GetCustomContentViews.* '''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.ServiceModel Namespace Global Namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel Public Partial Class CustomContentViewModel ''' '''Id of the Custom Content View. ''' Public Overridable Property ContentViewId As Guid ''' '''Name of the Custom Content View. ''' Public Overridable Property Name As String End Class ''' '''Request a list of Custom Content Views for the current licensee of the specified type. ''' Public Partial Class GetCustomContentViews Implements IReturn(Of GetCustomContentViewsResponse) ''' '''The RmsTableCtxId representing the type of views we are retrieving. ''' Public Overridable Property RmsTableCtxId As Guid End Class Public Partial Class GetCustomContentViewsResponse Public Overridable Property Views As List(Of CustomContentViewModel) 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