Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.16 KB

File metadata and controls

29 lines (22 loc) · 1.16 KB

V1TokenRequestStatus

TokenRequestStatus is the result of a token request.

Properties

Name Type Description Notes
expiration_timestamp datetime expirationTimestamp is the time of expiration of the returned token. [optional]
token str token is the opaque bearer token. [optional]

Example

from kubernetes.client.models.v1_token_request_status import V1TokenRequestStatus

# TODO update the JSON string below
json = "{}"
# create an instance of V1TokenRequestStatus from a JSON string
v1_token_request_status_instance = V1TokenRequestStatus.from_json(json)
# print the JSON string representation of the object
print(V1TokenRequestStatus.to_json())

# convert the object into a dict
v1_token_request_status_dict = v1_token_request_status_instance.to_dict()
# create an instance of V1TokenRequestStatus from a dict
v1_token_request_status_from_dict = V1TokenRequestStatus.from_dict(v1_token_request_status_dict)

[Back to Model list] [Back to API list] [Back to README]