Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 881 Bytes

Requester.md

File metadata and controls

30 lines (21 loc) · 881 Bytes

Requester

Properties

Name Type Description Notes
name str
identifier RequesterIdentifier [optional]

Example

from abdm.models.requester import Requester

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

# convert the object into a dict
requester_dict = requester_instance.to_dict()
# create an instance of Requester from a dict
requester_from_dict = Requester.from_dict(requester_dict)

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