Interface BearerToken

interface BearerToken {
    access_token: string;
    expire_in: string;
    refresh_token: string;
    token_type: "bearer";
}

Properties

access_token: string
expire_in: string
refresh_token: string
token_type: "bearer"