Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 2.07 KB

File metadata and controls

38 lines (29 loc) · 2.07 KB

HIPConsentNotificationNotificationConsentDetail

Properties

Name Type Description Notes
schema_version str [optional]
consent_id str
created_at datetime
patient ConsentManagerPatientID
care_contexts List[HIPConsentNotificationNotificationConsentDetailCareContextsInner]
purpose UsePurpose
hip HIPConsentNotificationNotificationConsentDetailHip
consent_manager HIPConsentNotificationNotificationConsentDetailConsentManager
hi_types List[HITypeEnum]
permission Permission

Example

from abdm_gateway.models.hip_consent_notification_notification_consent_detail import HIPConsentNotificationNotificationConsentDetail

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

# convert the object into a dict
hip_consent_notification_notification_consent_detail_dict = hip_consent_notification_notification_consent_detail_instance.to_dict()
# create an instance of HIPConsentNotificationNotificationConsentDetail from a dict
hip_consent_notification_notification_consent_detail_from_dict = HIPConsentNotificationNotificationConsentDetail.from_dict(hip_consent_notification_notification_consent_detail_dict)

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