Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.21 KB

File metadata and controls

30 lines (21 loc) · 1.21 KB

GroupRemoteInfoZendeskOrganization

Remote info for Zendesk organization.

Properties

Name Type Description Notes
organization_id str The ID of the Zendesk organization.

Example

from opal_security.models.group_remote_info_zendesk_organization import GroupRemoteInfoZendeskOrganization

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

# convert the object into a dict
group_remote_info_zendesk_organization_dict = group_remote_info_zendesk_organization_instance.to_dict()
# create an instance of GroupRemoteInfoZendeskOrganization from a dict
group_remote_info_zendesk_organization_from_dict = GroupRemoteInfoZendeskOrganization.from_dict(group_remote_info_zendesk_organization_dict)

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