(* Options: Date: 2026-04-04 03:05:46 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: GetCustomContentViews.* //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 CustomContentViewModel() = /// ///Id of the Custom Content View. /// [] member val ContentViewId:Guid = new Guid() with get,set /// ///Name of the Custom Content View. /// [] member val Name: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 GetCustomContentViewsResponse() = member val Views:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Request a list of Custom Content Views for the current licensee of the specified type. /// [] [] [] type GetCustomContentViews() = interface IReturn /// ///The RmsTableCtxId representing the type of views we are retrieving. /// [] member val RmsTableCtxId:Guid = new Guid() with get,set