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]