# The PublicTokenInfo object

## Attributes

- `token_id` (string)
  The ID of this token.
- `creation_time` (int64)
  Server time (in epoch milliseconds) when the token was created.
- `expiry_time` (int64)
  Server time (in epoch milliseconds) when the token will expire, or -1 if not applicable.
- `comment` (string)
  Comment the token was created with, if applicable.
- `scopes` (array of string, GA)
  Scope of the token was created with, if applicable.

## Example

```json
{
  "token_id": "string",
  "creation_time": 0,
  "expiry_time": 0,
  "comment": "string",
  "scopes": [
    "string"
  ]
}
```


