UNPKG

umbraco-management-api-client

Version:

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

33 lines (32 loc) 1.49 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. */ /** * * @export * @interface UpdateDocumentNotificationsRequestModel */ export interface UpdateDocumentNotificationsRequestModel { /** * * @type {Array<string>} * @memberof UpdateDocumentNotificationsRequestModel */ subscribedActionIds: Array<string>; } /** * Check if a given object implements the UpdateDocumentNotificationsRequestModel interface. */ export declare function instanceOfUpdateDocumentNotificationsRequestModel(value: object): value is UpdateDocumentNotificationsRequestModel; export declare function UpdateDocumentNotificationsRequestModelFromJSON(json: any): UpdateDocumentNotificationsRequestModel; export declare function UpdateDocumentNotificationsRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateDocumentNotificationsRequestModel; export declare function UpdateDocumentNotificationsRequestModelToJSON(json: any): UpdateDocumentNotificationsRequestModel; export declare function UpdateDocumentNotificationsRequestModelToJSONTyped(value?: UpdateDocumentNotificationsRequestModel | null, ignoreDiscriminator?: boolean): any;