@apideck/node
Version:
Apideck Node.js SDK
38 lines (37 loc) • 1.23 kB
TypeScript
/**
* 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 { RequestRate } from './RequestRate';
import { VirtualWebhooksResources } from './VirtualWebhooksResources';
/**
* Virtual webhook config for the connector.
* @export
* @interface VirtualWebhooks
*/
export interface VirtualWebhooks {
/**
*
* @type {RequestRate}
* @memberof VirtualWebhooks
*/
request_rate: RequestRate;
/**
* The resources that will be requested from downstream.
* @type {{ [key: string]: VirtualWebhooksResources; }}
* @memberof VirtualWebhooks
*/
resources?: {
[key: string]: VirtualWebhooksResources;
};
}
export declare function VirtualWebhooksFromJSON(json: any): VirtualWebhooks;
export declare function VirtualWebhooksFromJSONTyped(json: any, ignoreDiscriminator: boolean): VirtualWebhooks;
export declare function VirtualWebhooksToJSON(value?: VirtualWebhooks | null): any;