Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

RetreiverTrainViewResponse.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

RetreiverTrainViewResponse

Properties

Name Type Description Notes
detail str Status of the training

Example

from iblai.models.retreiver_train_view_response import RetreiverTrainViewResponse

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

# convert the object into a dict
retreiver_train_view_response_dict = retreiver_train_view_response_instance.to_dict()
# create an instance of RetreiverTrainViewResponse from a dict
retreiver_train_view_response_from_dict = RetreiverTrainViewResponse.from_dict(retreiver_train_view_response_dict)

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