Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.56 KB

Group.md

File metadata and controls

36 lines (27 loc) · 1.56 KB

Group

A group of users

Properties

Name Type Description Notes
id str The unique identifier of the group [optional]
name str The display name of the group [optional]
type str The type of the group: * `generic`: A group created by a Flat user * `classTeachers`: A group created automaticaly by Flat that contains the teachers of a class * `classStudents`: A group created automaticaly by Flat that contains the studnets of a class [optional]
users_count float The number of users in this group [optional]
read_only bool `True` if the group is set in read-only [optional]
organization str If the group is related to an organization, this field will contain the unique identifier of the organization [optional]
creation_date datetime The creation date of the group [optional]

Example

from flat_api.models.group import Group

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

# convert the object into a dict
group_dict = group_instance.to_dict()
# create an instance of Group from a dict
group_form_dict = group.from_dict(group_dict)

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