Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1022 Bytes

File metadata and controls

30 lines (21 loc) · 1022 Bytes

PrismCount200Response

Properties

Name Type Description Notes
approximate int [optional]
count int [optional]

Example

from kandji.models.prism_count200_response import PrismCount200Response

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

# convert the object into a dict
prism_count200_response_dict = prism_count200_response_instance.to_dict()
# create an instance of PrismCount200Response from a dict
prism_count200_response_from_dict = PrismCount200Response.from_dict(prism_count200_response_dict)

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