/** * 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 { WebhookDetails } from './'; /** * Details of webhooks to register. * @export * @interface WebhookRegistrationDetails */ export interface WebhookRegistrationDetails { /** * The URL that specifies where to send the webhooks. * @type {string} * @memberof WebhookRegistrationDetails */ url: string; /** * A list of webhooks. * @type {Array} * @memberof WebhookRegistrationDetails */ webhooks: Array; } export declare function WebhookRegistrationDetailsFromJSON(json: any): WebhookRegistrationDetails; export declare function WebhookRegistrationDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookRegistrationDetails; export declare function WebhookRegistrationDetailsToJSON(value?: WebhookRegistrationDetails): any;