Remote info for Devin group.
| Name | Type | Description | Notes |
|---|---|---|---|
| group_name | str | The name of the Devin group. |
from opal_security.models.group_remote_info_devin_group import GroupRemoteInfoDevinGroup
# TODO update the JSON string below
json = "{}"
# create an instance of GroupRemoteInfoDevinGroup from a JSON string
group_remote_info_devin_group_instance = GroupRemoteInfoDevinGroup.from_json(json)
# print the JSON string representation of the object
print(GroupRemoteInfoDevinGroup.to_json())
# convert the object into a dict
group_remote_info_devin_group_dict = group_remote_info_devin_group_instance.to_dict()
# create an instance of GroupRemoteInfoDevinGroup from a dict
group_remote_info_devin_group_from_dict = GroupRemoteInfoDevinGroup.from_dict(group_remote_info_devin_group_dict)