ABDM-HIU-SDK

Consent

Properties

Name Type Description Notes
id str    

Example

from abdm.models.consent import Consent

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

# convert the object into a dict
consent_dict = consent_instance.to_dict()
# create an instance of Consent from a dict
consent_from_dict = Consent.from_dict(consent_dict)

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