Tokens
API models for the tokens
endpoint.
GetTokenResponse
¶
A model response from ravyapi.api.endpoints.tokens.Tokens.get_token
.
Attributes¶
data: dict[str, Any] The raw data returned from the Ravy API. user: str The user ID associated with the token. access: list[str] A list of valid permission nodes for the token. application: int The application ID registered to the token. token_type: Literal["ravy", "ksoft"] The type of the token, either "ravy" or "ksoft."
Source code in ravyapi/api/models/tokens.py
access
property
¶
A list of valid permission nodes for the token.
application
property
¶
The application ID registered to the token.
data
property
¶
The raw data returned from the Ravy API.
token_type
property
¶
The type of the token, either "ravy" or "ksoft."
user
property
¶
The user ID associated with the token.