Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1007 Bytes

File metadata and controls

31 lines (22 loc) · 1007 Bytes

UserGroupArray

Properties

Name Type Description Notes
data List[UserGroupRead]
links PageLink
meta Meta

Example

from firefly_iii_client.models.user_group_array import UserGroupArray

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

# convert the object into a dict
user_group_array_dict = user_group_array_instance.to_dict()
# create an instance of UserGroupArray from a dict
user_group_array_from_dict = UserGroupArray.from_dict(user_group_array_dict)

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