Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

PatientCareContextLink.md

File metadata and controls

30 lines (21 loc) · 1.13 KB

PatientCareContextLink

Properties

Name Type Description Notes
access_token str AccessToken fetched in the user auth process for the purpose specified
patient PatientCareContextLinkPatient

Example

from abdm_gateway.models.patient_care_context_link import PatientCareContextLink

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

# convert the object into a dict
patient_care_context_link_dict = patient_care_context_link_instance.to_dict()
# create an instance of PatientCareContextLink from a dict
patient_care_context_link_from_dict = PatientCareContextLink.from_dict(patient_care_context_link_dict)

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