/* Options: Date: 2026-04-04 04:52:11 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCustomContentViews.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class CustomContentViewModel { /** @description Id of the Custom Content View. */ // @ApiMember(DataType="Guid", Description="Id of the Custom Content View.", Name="ContentViewId", ParameterType="query") public ContentViewId: string; /** @description Name of the Custom Content View. */ // @ApiMember(DataType="string", Description="Name of the Custom Content View.", Name="Name", ParameterType="query") public Name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @DataContract export class ResponseStatus { // @DataMember(Order=1) public ErrorCode: string; // @DataMember(Order=2) public Message: string; // @DataMember(Order=3) public StackTrace: string; // @DataMember(Order=4) public Errors: ResponseError[]; // @DataMember(Order=5) public Meta: { [index:string]: string; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @ApiResponse(Description="Returns the Views matching the specified type.") export class GetCustomContentViewsResponse { public Views: CustomContentViewModel[]; public ResponseStatus: ResponseStatus; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description 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.") export class GetCustomContentViews implements IReturn { /** @description 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 RmsTableCtxId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetCustomContentViews'; } public getMethod() { return 'GET'; } public createResponse() { return new GetCustomContentViewsResponse(); } }