Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

ResourceRemoteInfoNetsuiteRole

Remote info for NetSuite role.

Properties

Name Type Description Notes
role_id str The id of the role.

Example

from opal_security.models.resource_remote_info_netsuite_role import ResourceRemoteInfoNetsuiteRole

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

# convert the object into a dict
resource_remote_info_netsuite_role_dict = resource_remote_info_netsuite_role_instance.to_dict()
# create an instance of ResourceRemoteInfoNetsuiteRole from a dict
resource_remote_info_netsuite_role_from_dict = ResourceRemoteInfoNetsuiteRole.from_dict(resource_remote_info_netsuite_role_dict)

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