Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.2 KB

File metadata and controls

30 lines (21 loc) · 1.2 KB

ResourceRemoteInfoDevinOrganization

Remote info for Devin organization.

Properties

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

Example

from opal_security.models.resource_remote_info_devin_organization import ResourceRemoteInfoDevinOrganization

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

# convert the object into a dict
resource_remote_info_devin_organization_dict = resource_remote_info_devin_organization_instance.to_dict()
# create an instance of ResourceRemoteInfoDevinOrganization from a dict
resource_remote_info_devin_organization_from_dict = ResourceRemoteInfoDevinOrganization.from_dict(resource_remote_info_devin_organization_dict)

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