@apideck/node
Version:
Apideck Node.js SDK
25 lines (24 loc) • 883 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.
*/
/**
* OAuth grant type used by the connector. More info: https://oauth.net/2/grant-types
* @export
* @enum {string}
*/
export declare enum OAuthGrantType {
authorization_code = "authorization_code",
client_credentials = "client_credentials",
password = "password"
}
export declare function OAuthGrantTypeFromJSON(json: any): OAuthGrantType;
export declare function OAuthGrantTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthGrantType;
export declare function OAuthGrantTypeToJSON(value?: OAuthGrantType | null): any;