UNPKG

umbraco-management-api-client

Version:

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

46 lines (45 loc) 1.74 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 DocumentPermissionPresentationModel */ export interface DocumentPermissionPresentationModel { /** * * @type {string} * @memberof DocumentPermissionPresentationModel */ $type: string; /** * * @type {ReferenceByIdModel} * @memberof DocumentPermissionPresentationModel */ document: ReferenceByIdModel; /** * * @type {Set<string>} * @memberof DocumentPermissionPresentationModel */ verbs: Set<string>; } /** * Check if a given object implements the DocumentPermissionPresentationModel interface. */ export declare function instanceOfDocumentPermissionPresentationModel(value: object): value is DocumentPermissionPresentationModel; export declare function DocumentPermissionPresentationModelFromJSON(json: any): DocumentPermissionPresentationModel; export declare function DocumentPermissionPresentationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentPermissionPresentationModel; export declare function DocumentPermissionPresentationModelToJSON(json: any): DocumentPermissionPresentationModel; export declare function DocumentPermissionPresentationModelToJSONTyped(value?: DocumentPermissionPresentationModel | null, ignoreDiscriminator?: boolean): any;