Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

HIRequestHiRequest.md

File metadata and controls

32 lines (23 loc) · 1.07 KB

HIRequestHiRequest

Properties

Name Type Description Notes
consent Consent
date_range DateRange
data_push_url str
key_material KeyMaterial

Example

from abdm.models.hi_request_hi_request import HIRequestHiRequest

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

# convert the object into a dict
hi_request_hi_request_dict = hi_request_hi_request_instance.to_dict()
# create an instance of HIRequestHiRequest from a dict
hi_request_hi_request_from_dict = HIRequestHiRequest.from_dict(hi_request_hi_request_dict)

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