Remote info for GitHub organization role.
| Name | Type | Description | Notes |
|---|---|---|---|
| role_id | str | The id of the role. |
from opal_security.models.resource_remote_info_github_org_role import ResourceRemoteInfoGithubOrgRole
# TODO update the JSON string below
json = "{}"
# create an instance of ResourceRemoteInfoGithubOrgRole from a JSON string
resource_remote_info_github_org_role_instance = ResourceRemoteInfoGithubOrgRole.from_json(json)
# print the JSON string representation of the object
print(ResourceRemoteInfoGithubOrgRole.to_json())
# convert the object into a dict
resource_remote_info_github_org_role_dict = resource_remote_info_github_org_role_instance.to_dict()
# create an instance of ResourceRemoteInfoGithubOrgRole from a dict
resource_remote_info_github_org_role_from_dict = ResourceRemoteInfoGithubOrgRole.from_dict(resource_remote_info_github_org_role_dict)