Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 988 Bytes

Organization.md

File metadata and controls

33 lines (24 loc) · 988 Bytes

Organization

Properties

Name Type Description Notes
created_at datetime
id str
name str
registerable bool [optional]
updated_at datetime

Example

from trieve_py_client.models.organization import Organization

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

# convert the object into a dict
organization_dict = organization_instance.to_dict()
# create an instance of Organization from a dict
organization_form_dict = organization.from_dict(organization_dict)

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