Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 996 Bytes

Group.md

File metadata and controls

32 lines (23 loc) · 996 Bytes

Group

Properties

Name Type Description Notes
name str Name of group [optional]
description str Description of group [optional]
inserted_date str Inserted timestamp of group [optional]
last_modified_date str Last nodified timestamp of group [optional]

Example

from formkiq_client.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_from_dict = Group.from_dict(group_dict)

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