Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.06 KB

File metadata and controls

34 lines (25 loc) · 1.06 KB

OrganisationGroup

Properties

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

Example

from revengai.models.organisation_group import OrganisationGroup

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

# convert the object into a dict
organisation_group_dict = organisation_group_instance.to_dict()
# create an instance of OrganisationGroup from a dict
organisation_group_from_dict = OrganisationGroup.from_dict(organisation_group_dict)

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