UNPKG

@apideck/node

Version:
28 lines (27 loc) 893 B
/** * 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. */ /** * * @export * @interface VirtualWebhooksResources */ export interface VirtualWebhooksResources { /** * * @type {Array<string>} * @memberof VirtualWebhooksResources */ events?: Array<string>; } export declare function VirtualWebhooksResourcesFromJSON(json: any): VirtualWebhooksResources; export declare function VirtualWebhooksResourcesFromJSONTyped(json: any, ignoreDiscriminator: boolean): VirtualWebhooksResources; export declare function VirtualWebhooksResourcesToJSON(value?: VirtualWebhooksResources | null): any;