Skip to content

Token Response

nexthink_api.Models.NxtTokenResponse

Bases: BaseModel

Nexthink API Token answer.

Attributes

token_type : str
    The type of the token.
expires_in : int
    The expiration time of the token.
access_token str
    The access token.
scope : str
    The scope of the token.

token_type: Annotated[str, Field(min_length=1)] instance-attribute

expires_in: Annotated[int, Field(ge=0)] instance-attribute

access_token: Annotated[str, Field(min_length=1)] instance-attribute

scope: Annotated[str, Field(min_length=1)] instance-attribute