Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

File metadata and controls

32 lines (23 loc) · 1.09 KB

OrgModelDeleteResponse

Response model for org model deletion.

Properties

Name Type Description Notes
success bool [optional] [default to True]
model_id str
message str

Example

from mixpeek.models.org_model_delete_response import OrgModelDeleteResponse

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

# convert the object into a dict
org_model_delete_response_dict = org_model_delete_response_instance.to_dict()
# create an instance of OrgModelDeleteResponse from a dict
org_model_delete_response_from_dict = OrgModelDeleteResponse.from_dict(org_model_delete_response_dict)

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