ConsentManagerPatientID
Properties
Name |
Type |
Description |
Notes |
id |
str |
|
|
Example
from abdm.models.consent_manager_patient_id import ConsentManagerPatientID
# TODO update the JSON string below
json = "{}"
# create an instance of ConsentManagerPatientID from a JSON string
consent_manager_patient_id_instance = ConsentManagerPatientID.from_json(json)
# print the JSON string representation of the object
print(ConsentManagerPatientID.to_json())
# convert the object into a dict
consent_manager_patient_id_dict = consent_manager_patient_id_instance.to_dict()
# create an instance of ConsentManagerPatientID from a dict
consent_manager_patient_id_from_dict = ConsentManagerPatientID.from_dict(consent_manager_patient_id_dict)
[Back to Model list] [Back to API list] [Back to README]