Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

ResolveIncident200Response

Properties

Name Type Description Notes
status str [optional]

Example

from nativebpm_client.models.resolve_incident200_response import ResolveIncident200Response

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

# convert the object into a dict
resolve_incident200_response_dict = resolve_incident200_response_instance.to_dict()
# create an instance of ResolveIncident200Response from a dict
resolve_incident200_response_from_dict = ResolveIncident200Response.from_dict(resolve_incident200_response_dict)

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