UNPKG

umbraco-management-api-client

Version:

TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)

52 lines (51 loc) 2.12 kB
/** * Umbraco Management API * This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility * * The version of the OpenAPI document: Latest * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ReferenceByIdModel } from './ReferenceByIdModel'; /** * * @export * @interface DocumentPropertyValuePermissionPresentationModel */ export interface DocumentPropertyValuePermissionPresentationModel { /** * * @type {string} * @memberof DocumentPropertyValuePermissionPresentationModel */ $type: string; /** * * @type {ReferenceByIdModel} * @memberof DocumentPropertyValuePermissionPresentationModel */ documentType: ReferenceByIdModel; /** * * @type {ReferenceByIdModel} * @memberof DocumentPropertyValuePermissionPresentationModel */ propertyType: ReferenceByIdModel; /** * * @type {Set<string>} * @memberof DocumentPropertyValuePermissionPresentationModel */ verbs: Set<string>; } /** * Check if a given object implements the DocumentPropertyValuePermissionPresentationModel interface. */ export declare function instanceOfDocumentPropertyValuePermissionPresentationModel(value: object): value is DocumentPropertyValuePermissionPresentationModel; export declare function DocumentPropertyValuePermissionPresentationModelFromJSON(json: any): DocumentPropertyValuePermissionPresentationModel; export declare function DocumentPropertyValuePermissionPresentationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentPropertyValuePermissionPresentationModel; export declare function DocumentPropertyValuePermissionPresentationModelToJSON(json: any): DocumentPropertyValuePermissionPresentationModel; export declare function DocumentPropertyValuePermissionPresentationModelToJSONTyped(value?: DocumentPropertyValuePermissionPresentationModel | null, ignoreDiscriminator?: boolean): any;