Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 948 Bytes

File metadata and controls

32 lines (23 loc) · 948 Bytes

Organisation

Properties

Name Type Description Notes
created_at datetime
name str
organisation_id int
updated_at datetime

Example

from revengai.models.organisation import Organisation

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

# convert the object into a dict
organisation_dict = organisation_instance.to_dict()
# create an instance of Organisation from a dict
organisation_from_dict = Organisation.from_dict(organisation_dict)

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