/**
 * 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.
 */
import { ConnectorEvent } from './ConnectorEvent';
import { ConnectorOauthScopes1 } from './ConnectorOauthScopes1';
import { LinkedConnectorResource } from './LinkedConnectorResource';
import { UnifiedApiId } from './UnifiedApiId';
/**
 *
 * @export
 * @interface ConnectorUnifiedApis
 */
export interface ConnectorUnifiedApis {
    /**
     *
     * @type {UnifiedApiId}
     * @memberof ConnectorUnifiedApis
     */
    id?: UnifiedApiId;
    /**
     * Name of the API.
     * @type {string}
     * @memberof ConnectorUnifiedApis
     */
    name?: string;
    /**
     * Indicates whether a connector only supports authentication. In this case the connector is not mapped to a Unified API, but can be used with the Proxy API
     * @type {boolean}
     * @memberof ConnectorUnifiedApis
     */
    readonly auth_only?: boolean;
    /**
     *
     * @type {Array<ConnectorOauthScopes1>}
     * @memberof ConnectorUnifiedApis
     */
    oauth_scopes?: Array<ConnectorOauthScopes1>;
    /**
     * List of resources that are supported on the connector.
     * @type {Array<LinkedConnectorResource>}
     * @memberof ConnectorUnifiedApis
     */
    supported_resources?: Array<LinkedConnectorResource>;
    /**
     * List of resources that are not supported on the downstream.
     * @type {Array<string>}
     * @memberof ConnectorUnifiedApis
     */
    downstream_unsupported_resources?: Array<string>;
    /**
     * List of events that are supported on the connector for this Unified API.
     * @type {Array<ConnectorEvent>}
     * @memberof ConnectorUnifiedApis
     */
    supported_events?: Array<ConnectorEvent>;
}
export declare function ConnectorUnifiedApisFromJSON(json: any): ConnectorUnifiedApis;
export declare function ConnectorUnifiedApisFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectorUnifiedApis;
export declare function ConnectorUnifiedApisToJSON(value?: ConnectorUnifiedApis | null): any;
