Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.29 KB

DataNotificationEntriesInner.md

File metadata and controls

33 lines (24 loc) · 1.29 KB

DataNotificationEntriesInner

Properties

Name Type Description Notes
content str Encrypted content
media str mimetype of the content.
checksum str Md5 checksum of the content before encryption
care_context_reference str care context reference number.
link str Encrypted content

Example

from abdm.models.data_notification_entries_inner import DataNotificationEntriesInner

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

# convert the object into a dict
data_notification_entries_inner_dict = data_notification_entries_inner_instance.to_dict()
# create an instance of DataNotificationEntriesInner from a dict
data_notification_entries_inner_from_dict = DataNotificationEntriesInner.from_dict(data_notification_entries_inner_dict)

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