Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.56 KB

ConsentRequestConsent.md

File metadata and controls

36 lines (27 loc) · 1.56 KB

ConsentRequestConsent

Properties

Name Type Description Notes
purpose UsePurpose
patient ConsentRequestConsentPatient
hip ConsentArtefactResponseConsentConsentDetailHip [optional]
care_contexts List[CareContextDefinition] [optional]
hiu ConsentArtefactResponseConsentConsentDetailHiu
requester Requester
hi_types List[HITypeEnum]
permission Permission

Example

from abdm.models.consent_request_consent import ConsentRequestConsent

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

# convert the object into a dict
consent_request_consent_dict = consent_request_consent_instance.to_dict()
# create an instance of ConsentRequestConsent from a dict
consent_request_consent_from_dict = ConsentRequestConsent.from_dict(consent_request_consent_dict)

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