Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.57 KB

File metadata and controls

37 lines (28 loc) · 1.57 KB

PrismRequestCategoryExport200Response

Properties

Name Type Description Notes
args PrismRequestCategoryExport200ResponseArgs [optional]
category str [optional]
created_at str [optional]
error_msg object [optional]
id str [optional]
path object [optional]
signed_url object [optional]
status str [optional]
updated_at str [optional]

Example

from kandji.models.prism_request_category_export200_response import PrismRequestCategoryExport200Response

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

# convert the object into a dict
prism_request_category_export200_response_dict = prism_request_category_export200_response_instance.to_dict()
# create an instance of PrismRequestCategoryExport200Response from a dict
prism_request_category_export200_response_from_dict = PrismRequestCategoryExport200Response.from_dict(prism_request_category_export200_response_dict)

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