UNPKG

@apideck/node

Version:
24 lines (23 loc) 701 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. */ /** * The status of the webhook. * @export * @enum {string} */ export declare enum Status { enabled = "enabled", disabled = "disabled" } export declare function StatusFromJSON(json: any): Status; export declare function StatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): Status; export declare function StatusToJSON(value?: Status | null): any;