Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.07 KB

SessionResponse.md

File metadata and controls

33 lines (24 loc) · 1.07 KB

SessionResponse

Properties

Name Type Description Notes
access_token str [optional]
expires_in int In Minutes [optional]
refresh_expires_in int In Minutes [optional]
refresh_token str [optional]
token_type str [optional]

Example

from abdm.models.session_response import SessionResponse

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

# convert the object into a dict
session_response_dict = session_response_instance.to_dict()
# create an instance of SessionResponse from a dict
session_response_from_dict = SessionResponse.from_dict(session_response_dict)

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