/* Options: Date: 2026-04-04 06:47:56 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCustomContentViews.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Request a list of Custom Content Views for the current licensee of the specified type. */ @Route(Path="/customcontentviews") @Api(Description="Request a list of Custom Content Views for the current licensee of the specified type.") open 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") open var RmsTableCtxId:UUID? = null companion object { private val responseType = GetCustomContentViewsResponse::class.java } override fun getResponseType(): Any? = GetCustomContentViews.responseType } @ApiResponse(Description="Returns the Views matching the specified type.") open class GetCustomContentViewsResponse { open var Views:ArrayList? = null open var ResponseStatus:ResponseStatus? = null } open class CustomContentViewModel { /** * Id of the Custom Content View. */ @ApiMember(DataType="Guid", Description="Id of the Custom Content View.", Name="ContentViewId", ParameterType="query") open var ContentViewId:UUID? = null /** * Name of the Custom Content View. */ @ApiMember(DataType="string", Description="Name of the Custom Content View.", Name="Name", ParameterType="query") open var Name:String? = null }