Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.31 KB

HIUConsentRequestStatusConsentRequest.md

File metadata and controls

31 lines (22 loc) · 1.31 KB

HIUConsentRequestStatusConsentRequest

Properties

Name Type Description Notes
id str
status ConsentStatus
consent_artefacts List[ConsentArtefactReference]

Example

from abdm.models.hiu_consent_request_status_consent_request import HIUConsentRequestStatusConsentRequest

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

# convert the object into a dict
hiu_consent_request_status_consent_request_dict = hiu_consent_request_status_consent_request_instance.to_dict()
# create an instance of HIUConsentRequestStatusConsentRequest from a dict
hiu_consent_request_status_consent_request_from_dict = HIUConsentRequestStatusConsentRequest.from_dict(hiu_consent_request_status_consent_request_dict)

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