Remote info for Twingate synced group.
| Name | Type | Description | Notes |
|---|---|---|---|
| group_id | str | The id of the Twingate synced group. |
from opal_security.models.group_remote_info_twingate_group_synced import GroupRemoteInfoTwingateGroupSynced
# TODO update the JSON string below
json = "{}"
# create an instance of GroupRemoteInfoTwingateGroupSynced from a JSON string
group_remote_info_twingate_group_synced_instance = GroupRemoteInfoTwingateGroupSynced.from_json(json)
# print the JSON string representation of the object
print(GroupRemoteInfoTwingateGroupSynced.to_json())
# convert the object into a dict
group_remote_info_twingate_group_synced_dict = group_remote_info_twingate_group_synced_instance.to_dict()
# create an instance of GroupRemoteInfoTwingateGroupSynced from a dict
group_remote_info_twingate_group_synced_from_dict = GroupRemoteInfoTwingateGroupSynced.from_dict(group_remote_info_twingate_group_synced_dict)