Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.34 KB

File metadata and controls

37 lines (28 loc) · 1.34 KB

Reportsrunnerv3ActiveQuery

Properties

Name Type Description Notes
can_stop bool [optional]
detail str [optional]
elapsed_time int [optional]
name str [optional]
query_id str [optional]
start_time datetime [optional]
status str [optional]
type str [optional]
user str [optional]

Example

from ibm_gdsc_sdk_saas.models.reportsrunnerv3_active_query import Reportsrunnerv3ActiveQuery

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

# convert the object into a dict
reportsrunnerv3_active_query_dict = reportsrunnerv3_active_query_instance.to_dict()
# create an instance of Reportsrunnerv3ActiveQuery from a dict
reportsrunnerv3_active_query_from_dict = Reportsrunnerv3ActiveQuery.from_dict(reportsrunnerv3_active_query_dict)

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