include/voauth_Token.hrl

-record(token, {
    access_token :: binary(),
    expires_in :: integer(),
    refresh_token :: gleam@option:option(binary()),
    scope :: binary(),
    token_type :: binary()
}).