Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.22 KB

File metadata and controls

33 lines (24 loc) · 1.22 KB

OpalNodeQuery

Request body for a NODE-type OpalQuery. Returns entities (users, resources, groups) matching the given filters.

Properties

Name Type Description Notes
type str
query OpalNodeQueryBody [optional]
first int Maximum number of results to return. Defaults to 200. [optional]
after str Cursor from a previous response to fetch the next page of results. [optional]

Example

from opal_security.models.opal_node_query import OpalNodeQuery

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

# convert the object into a dict
opal_node_query_dict = opal_node_query_instance.to_dict()
# create an instance of OpalNodeQuery from a dict
opal_node_query_from_dict = OpalNodeQuery.from_dict(opal_node_query_dict)

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