@apideck/node
Version:
Apideck Node.js SDK
25 lines (24 loc) • 838 B
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.
*/
/**
* The current state of the Integration.
* @export
* @enum {string}
*/
export declare enum IntegrationState {
disabled = "disabled",
needs_configuration = "needs_configuration",
configured = "configured"
}
export declare function IntegrationStateFromJSON(json: any): IntegrationState;
export declare function IntegrationStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): IntegrationState;
export declare function IntegrationStateToJSON(value?: IntegrationState | null): any;