Interface IAccessToken

interface IAccessToken {
    accessToken: string;
    error: string;
    errorDescription: string;
    expiresIn: number;
    tokenType: string;
}

Properties

accessToken: string
error: string
errorDescription: string
expiresIn: number
tokenType: string