Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.17 KB

File metadata and controls

33 lines (24 loc) · 1.17 KB

PrismLocalUsers200Response

Properties

Name Type Description Notes
cursor str [optional]
data object [optional]
limit int [optional]
offset int [optional]
total int [optional]

Example

from kandji.models.prism_local_users200_response import PrismLocalUsers200Response

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

# convert the object into a dict
prism_local_users200_response_dict = prism_local_users200_response_instance.to_dict()
# create an instance of PrismLocalUsers200Response from a dict
prism_local_users200_response_from_dict = PrismLocalUsers200Response.from_dict(prism_local_users200_response_dict)

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