DAVTokens
export type DAVTokens = {
access_token?: string;
refresh_token?: string;
expires_in?: number;
id_token?: string;
token_type?: string;
scope?: string;
};
oauth token response
access_token
oauth access tokenrefresh_token
oauth refresh tokenexpires_in
token expires time in msid_token
oauth id tokentoken_type
oauth token type, usuallyBearer
scope
oauth token scope