/** * 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. */ /** * Container for a list of webhook IDs. * @export * @interface ContainerForWebhookIDs */ export interface ContainerForWebhookIDs { /** * A list of webhook IDs. * @type {Array} * @memberof ContainerForWebhookIDs */ webhookIds: Array; } export declare function ContainerForWebhookIDsFromJSON(json: any): ContainerForWebhookIDs; export declare function ContainerForWebhookIDsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContainerForWebhookIDs; export declare function ContainerForWebhookIDsToJSON(value?: ContainerForWebhookIDs): any;