Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.13 KB

File metadata and controls

36 lines (28 loc) · 1.13 KB

RegisterPredictionSetResponse

Properties

Name Type Description Notes
registry_validation_job_id ID [optional]

Example

from ri.apiclient.models.register_prediction_set_response import (
    RegisterPredictionSetResponse,
)

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

# convert the object into a dict
register_prediction_set_response_dict = (
    register_prediction_set_response_instance.to_dict()
)
# create an instance of RegisterPredictionSetResponse from a dict
register_prediction_set_response_from_dict = RegisterPredictionSetResponse.from_dict(
    register_prediction_set_response_dict
)

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