/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * 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 UserOauthAccessTokenResponse */ export interface UserOauthAccessTokenResponse { /** * OAuth access token for the user's connected social account * @type {string} * @memberof UserOauthAccessTokenResponse */ accessToken: string; /** * OAuth scopes granted to the access token, as captured at the time of token issuance. Empty array when the provider did not surface scopes or when the token predates scope capture. * @type {Array} * @memberof UserOauthAccessTokenResponse */ scopes: Array; } export declare function UserOauthAccessTokenResponseFromJSON(json: any): UserOauthAccessTokenResponse; export declare function UserOauthAccessTokenResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserOauthAccessTokenResponse; export declare function UserOauthAccessTokenResponseToJSON(value?: UserOauthAccessTokenResponse | null): any;