Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.24 KB

File metadata and controls

31 lines (22 loc) · 1.24 KB

Reportsrunnerv3StopQueryResponse

StopQueryResponse is the response of the StopQuery API.

Properties

Name Type Description Notes
is_success Dict[str, bool] [optional]
status RpcStatus [optional]

Example

from ibm_gdsc_sdk_saas.models.reportsrunnerv3_stop_query_response import Reportsrunnerv3StopQueryResponse

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

# convert the object into a dict
reportsrunnerv3_stop_query_response_dict = reportsrunnerv3_stop_query_response_instance.to_dict()
# create an instance of Reportsrunnerv3StopQueryResponse from a dict
reportsrunnerv3_stop_query_response_from_dict = Reportsrunnerv3StopQueryResponse.from_dict(reportsrunnerv3_stop_query_response_dict)

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