Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 890 Bytes

Identifier.md

File metadata and controls

30 lines (21 loc) · 890 Bytes

Identifier

Properties

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

Example

from abdm.models.identifier import Identifier

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

# convert the object into a dict
identifier_dict = identifier_instance.to_dict()
# create an instance of Identifier from a dict
identifier_from_dict = Identifier.from_dict(identifier_dict)

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