ABDM-HIU-SDK

ConsentArtefactResponseConsentConsentDetail

Properties

Name Type Description Notes
schema_version str   [optional]
consent_id str    
created_at datetime    
patient ConsentManagerPatientID    
care_contexts List[ConsentArtefactResponseConsentConsentDetailCareContextsInner]    
purpose UsePurpose    
hip ConsentArtefactResponseConsentConsentDetailHip    
hiu ConsentArtefactResponseConsentConsentDetailHiu    
consent_manager ConsentArtefactResponseConsentConsentDetailConsentManager    
requester Requester    
hi_types List[HITypeEnum]    
permission Permission    

Example

from abdm.models.consent_artefact_response_consent_consent_detail import ConsentArtefactResponseConsentConsentDetail

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

# convert the object into a dict
consent_artefact_response_consent_consent_detail_dict = consent_artefact_response_consent_consent_detail_instance.to_dict()
# create an instance of ConsentArtefactResponseConsentConsentDetail from a dict
consent_artefact_response_consent_consent_detail_from_dict = ConsentArtefactResponseConsentConsentDetail.from_dict(consent_artefact_response_consent_consent_detail_dict)

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