Skip to content

Module keycloak_oidc_api_client.models.user_code_response

Variables

T

Classes

UserCodeResponse

class UserCodeResponse(
    device_code: str,
    user_code: str,
    verification_uri: str,
    verification_uri_complete: str,
    expires_in: int,
    interval: int
)

Attributes:

device_code (str): a confidential code, where to poll the token user_code (str): an “authentication process id” verification_uri (str): where to redirect the user to the authentication process verification_uri_complete (str): The same of verification_uri, with the user_code in URI. Encode this in a QRCode expires_in (int): interval (int): for polling

Static methods

from_dict

def from_dict(
    src_dict: collections.abc.Mapping[str, typing.Any]
) -> ~T

Instance variables

additional_keys
additional_properties
device_code
expires_in
interval
user_code
verification_uri
verification_uri_complete

Methods

to_dict

def to_dict(
    self
) -> dict[str, typing.Any]