Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.22 KB

File metadata and controls

30 lines (21 loc) · 1.22 KB

ResourceRemoteInfoCursorOrganization

Remote info for a Cursor organization.

Properties

Name Type Description Notes
org_id str The id of the organization.

Example

from opal_security.models.resource_remote_info_cursor_organization import ResourceRemoteInfoCursorOrganization

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

# convert the object into a dict
resource_remote_info_cursor_organization_dict = resource_remote_info_cursor_organization_instance.to_dict()
# create an instance of ResourceRemoteInfoCursorOrganization from a dict
resource_remote_info_cursor_organization_from_dict = ResourceRemoteInfoCursorOrganization.from_dict(resource_remote_info_cursor_organization_dict)

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