/** * 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. */ import { RegisteredWebhook } from './'; /** * Container for a list of registered webhooks. Webhook details are returned in the same order as the request. * @export * @interface ContainerForRegisteredWebhooks */ export interface ContainerForRegisteredWebhooks { /** * A list of registered webhooks. * @type {Array} * @memberof ContainerForRegisteredWebhooks */ webhookRegistrationResult?: Array; } export declare function ContainerForRegisteredWebhooksFromJSON(json: any): ContainerForRegisteredWebhooks; export declare function ContainerForRegisteredWebhooksFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContainerForRegisteredWebhooks; export declare function ContainerForRegisteredWebhooksToJSON(value?: ContainerForRegisteredWebhooks): any;