Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 997 Bytes

RequesterIdentifier.md

File metadata and controls

31 lines (22 loc) · 997 Bytes

RequesterIdentifier

Properties

Name Type Description Notes
type str
value str
system str [optional]

Example

from abdm.models.requester_identifier import RequesterIdentifier

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

# convert the object into a dict
requester_identifier_dict = requester_identifier_instance.to_dict()
# create an instance of RequesterIdentifier from a dict
requester_identifier_from_dict = RequesterIdentifier.from_dict(requester_identifier_dict)

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