Interface OauthToken

interface OauthToken {
    access_token: string;
    expires_in: string;
    refresh_token: string;
    scope: string;
    token_type: string;
}

Properties

access_token: string
expires_in: string
refresh_token: string
scope: string
token_type: string