Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 929 Bytes

RequestReference.md

File metadata and controls

29 lines (20 loc) · 929 Bytes

RequestReference

Properties

Name Type Description Notes
request_id str the requestId that was passed

Example

from abdm.models.request_reference import RequestReference

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

# convert the object into a dict
request_reference_dict = request_reference_instance.to_dict()
# create an instance of RequestReference from a dict
request_reference_from_dict = RequestReference.from_dict(request_reference_dict)

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