Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.25 KB

ConsentArtefactResponseConsent.md

File metadata and controls

31 lines (22 loc) · 1.25 KB

ConsentArtefactResponseConsent

Properties

Name Type Description Notes
status ConsentStatus
consent_detail ConsentArtefactResponseConsentConsentDetail
signature str

Example

from abdm.models.consent_artefact_response_consent import ConsentArtefactResponseConsent

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

# convert the object into a dict
consent_artefact_response_consent_dict = consent_artefact_response_consent_instance.to_dict()
# create an instance of ConsentArtefactResponseConsent from a dict
consent_artefact_response_consent_from_dict = ConsentArtefactResponseConsent.from_dict(consent_artefact_response_consent_dict)

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