UNPKG

@apideck/node

Version:
42 lines (37 loc) 971 B
/* tslint:disable */ /* eslint-disable */ /** * 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. */ /** * [Connection state flow](#section/Connection-state) * @export * @enum {string} */ export enum ConnectionState { available = 'available', callable = 'callable', added = 'added', authorized = 'authorized', invalid = 'invalid' } export function ConnectionStateFromJSON(json: any): ConnectionState { return ConnectionStateFromJSONTyped(json, false) } export function ConnectionStateFromJSONTyped( json: any, ignoreDiscriminator: boolean ): ConnectionState { return json as ConnectionState } export function ConnectionStateToJSON(value?: ConnectionState | null): any { return value as any }