UNPKG

@apideck/node

Version:
40 lines (39 loc) 1.25 kB
/** * 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 ConnectorOauthScopes */ export interface ConnectorOauthScopes { /** * ID of the OAuth scope. * @type {string} * @memberof ConnectorOauthScopes */ id?: string; /** * Label of the OAuth scope. * @type {string} * @memberof ConnectorOauthScopes */ label?: string; /** * List of Unified APIs that request this OAuth Scope by default. Application owners can customize the requested scopes. * @type {Array<string>} * @memberof ConnectorOauthScopes */ default_apis?: Array<string>; } export declare function ConnectorOauthScopesFromJSON(json: any): ConnectorOauthScopes; export declare function ConnectorOauthScopesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectorOauthScopes; export declare function ConnectorOauthScopesToJSON(value?: ConnectorOauthScopes | null): any;