> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lib.toolrinth.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AuthorizationResponse

```ts theme={"theme":"github-dark-high-contrast"}
export namespace OAuth2 {
  export interface AuthorizationResponse {
    access_token: string;
    token_type: string;
    expires_in: number;
  }
}
```

## Properties

<ResponseField name="access_token" type="string" required />

<ResponseField name="token_type" type="string" required />

<ResponseField name="expires_in" type="number" required />
