Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

HeartbeatResponse.md

File metadata and controls

31 lines (22 loc) · 1.04 KB

HeartbeatResponse

Properties

Name Type Description Notes
timestamp datetime Date time format in UTC, includes miliseconds YYYY-MM-DDThh:mm:ss.vZ
status str
error Error [optional]

Example

from abdm.models.heartbeat_response import HeartbeatResponse

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

# convert the object into a dict
heartbeat_response_dict = heartbeat_response_instance.to_dict()
# create an instance of HeartbeatResponse from a dict
heartbeat_response_from_dict = HeartbeatResponse.from_dict(heartbeat_response_dict)

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