/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.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 { Links } from './Links';
import { Meta } from './Meta';
import { Raw } from './Raw';
import { Webhook } from './Webhook';
/**
 *
 * @export
 * @interface GetWebhooksResponse
 */
export interface GetWebhooksResponse {
    /**
     * HTTP Response Status Code
     * @type {number}
     * @memberof GetWebhooksResponse
     */
    status_code: number;
    /**
     * HTTP Response Status
     * @type {string}
     * @memberof GetWebhooksResponse
     */
    status: string;
    /**
     *
     * @type {Array<Webhook>}
     * @memberof GetWebhooksResponse
     */
    data: Array<Webhook>;
    /**
     *
     * @type {Meta}
     * @memberof GetWebhooksResponse
     */
    meta?: Meta;
    /**
     *
     * @type {Links}
     * @memberof GetWebhooksResponse
     */
    links?: Links;
    /**
     *
     * @type {Raw}
     * @memberof GetWebhooksResponse
     */
    _raw?: Raw | null;
}
export declare function GetWebhooksResponseFromJSON(json: any): GetWebhooksResponse;
export declare function GetWebhooksResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetWebhooksResponse;
export declare function GetWebhooksResponseToJSON(value?: GetWebhooksResponse | null): any;
