Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1022 Bytes

OrganizationRepresentation.md

File metadata and controls

29 lines (20 loc) · 1022 Bytes

OrganizationRepresentation

Properties

Name Type Description Notes
id str

Example

from abdm.models.organization_representation import OrganizationRepresentation

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

# convert the object into a dict
organization_representation_dict = organization_representation_instance.to_dict()
# create an instance of OrganizationRepresentation from a dict
organization_representation_from_dict = OrganizationRepresentation.from_dict(organization_representation_dict)

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