/* Options:
Date: 2026-04-04 03:05:26
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
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: 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
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Eros.Subtle.Canvara.WebAPIModel.ServiceModel;
namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel
{
public partial class CustomContentViewModel
{
///
///Id of the Custom Content View.
///
[ApiMember(DataType="Guid", Description="Id of the Custom Content View.", Name="ContentViewId", ParameterType="query")]
public virtual Guid ContentViewId { get; set; }
///
///Name of the Custom Content View.
///
[ApiMember(DataType="string", Description="Name of the Custom Content View.", Name="Name", ParameterType="query")]
public virtual string Name { get; set; }
}
///
///Request a list of Custom Content Views for the current licensee of the specified type.
///
[Route("/customcontentviews")]
[Api(Description="Request a list of Custom Content Views for the current licensee of the specified type.")]
public partial class GetCustomContentViews
: IReturn
{
///
///The RmsTableCtxId representing the type of views we are retrieving.
///
[ApiMember(DataType="Guid", Description="The RmsTableCtxId representing the type of views we are retrieving.", IsRequired=true, Name="RmsTableCtxId", ParameterType="query")]
public virtual Guid RmsTableCtxId { get; set; }
}
[ApiResponse(Description="Returns the Views matching the specified type.")]
public partial class GetCustomContentViewsResponse
{
public virtual List Views { get; set; }
public virtual ResponseStatus ResponseStatus { get; set; }
}
}
namespace ServiceStack
{
[DataContract]
public partial class ResponseStatus
: IMeta
{
[DataMember(Order=1)]
public virtual string ErrorCode { get; set; }
[DataMember(Order=2)]
public virtual string Message { get; set; }
[DataMember(Order=3)]
public virtual string StackTrace { get; set; }
[DataMember(Order=4)]
public virtual List Errors { get; set; }
[DataMember(Order=5)]
public virtual Dictionary Meta { get; set; }
}
}