| Name | Type | Description | Notes |
|---|---|---|---|
| created_at | datetime | ||
| name | str | ||
| organisation_id | int | ||
| updated_at | datetime |
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)