import { type DenoKVOAuth } from "https://deno.land/x/fathym_common@v0.0.155/src/src.deps.ts";
const { Tokens } = DenoKVOAuth;
Tokens and associated information received from a successful access token request.
Properties
The type of access token received.
See https://tools.ietf.org/html/rfc6749#section-7.1 Should usually be "Bearer" for most OAuth 2.0 servers, but don't count on it.
The optional refresh token returned by the authorization server.
Consult your OAuth 2.0 Provider's documentation to see under which circumstances you'll receive one.
The scopes that were granted by the user.
May be undefined if the granted scopes match the requested scopes. See https://tools.ietf.org/html/rfc6749#section-5.1