export interface IAccessToken {
    scope: string;
    access_token: string;
    token_type: string;
    app_id: string;
    expires_in: number;
    expiration?: number;
}
