Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.17 KB

File metadata and controls

33 lines (25 loc) · 1.17 KB

ScheduledCTParameters

Properties

Name Type Description Notes
eval_data_integration_id ID [optional]
eval_data_info DataInfo
eval_pred_integration_id ID [optional]
eval_pred_info PredInfo [optional]

Example

from ri.apiclient.models.scheduled_ct_parameters import ScheduledCTParameters

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

# convert the object into a dict
scheduled_ct_parameters_dict = scheduled_ct_parameters_instance.to_dict()
# create an instance of ScheduledCTParameters from a dict
scheduled_ct_parameters_from_dict = ScheduledCTParameters.from_dict(
    scheduled_ct_parameters_dict
)

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