/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * ID of a registered webhook or error messages explaining why a webhook wasn\'t registered. * @export * @interface RegisteredWebhook */ export interface RegisteredWebhook { /** * Error messages specifying why the webhook creation failed. * @type {Array} * @memberof RegisteredWebhook */ errors?: Array; /** * The ID of the webhook. Returned if the webhook is created. * @type {number} * @memberof RegisteredWebhook */ createdWebhookId?: number; } export declare function RegisteredWebhookFromJSON(json: any): RegisteredWebhook; export declare function RegisteredWebhookFromJSONTyped(json: any, ignoreDiscriminator: boolean): RegisteredWebhook; export declare function RegisteredWebhookToJSON(value?: RegisteredWebhook): any;