Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1004 Bytes

UpdateGroupOutput.md

File metadata and controls

31 lines (22 loc) · 1004 Bytes

UpdateGroupOutput

Properties

Name Type Description Notes
group_name str [optional]
id str [optional]
name str [optional]

Example

from akeyless.models.update_group_output import UpdateGroupOutput

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

# convert the object into a dict
update_group_output_dict = update_group_output_instance.to_dict()
# create an instance of UpdateGroupOutput from a dict
update_group_output_from_dict = UpdateGroupOutput.from_dict(update_group_output_dict)

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