HIUConsentRequestStatus
Properties
Example
from abdm.models.hiu_consent_request_status import HIUConsentRequestStatus
# TODO update the JSON string below
json = "{}"
# create an instance of HIUConsentRequestStatus from a JSON string
hiu_consent_request_status_instance = HIUConsentRequestStatus.from_json(json)
# print the JSON string representation of the object
print(HIUConsentRequestStatus.to_json())
# convert the object into a dict
hiu_consent_request_status_dict = hiu_consent_request_status_instance.to_dict()
# create an instance of HIUConsentRequestStatus from a dict
hiu_consent_request_status_from_dict = HIUConsentRequestStatus.from_dict(hiu_consent_request_status_dict)
[Back to Model list] [Back to API list] [Back to README]