/**
 * This file was auto-generated by Fern from our API Definition.
 */
export interface ConnectorOAuth {
    /** The OAuth 2.0 client ID. This field is encrypted at rest. */
    clientId?: string;
    /** The OAuth 2.0 client Secret. This field is encrypted at rest and never returned in a response. */
    clientSecret?: string;
    /** The OAuth 2.0 /authorize endpoint to use when users authorize the connector. */
    authorizeUrl: string;
    /** The OAuth 2.0 /token endpoint to use when users authorize the connector. */
    tokenUrl: string;
    /** The OAuth scopes to request when users authorize the connector. */
    scope?: string;
}
