Represents the response from logging in with an OAuth code.

interface LoginWithOauthCodeResponse {
    access_token: string;
    id_token: string;
    refresh_token: string;
}

Properties

access_token: string
id_token: string
refresh_token: string