Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.18 KB

RebuildModelSyncResponseV2.md

File metadata and controls

32 lines (23 loc) · 1.18 KB

RebuildModelSyncResponseV2

Model Rebuild Ignored

Properties

Name Type Description Notes
message str
causes JobCauses
entity KfservingResponseV2

Example

from waylay.services.registry.models.rebuild_model_sync_response_v2 import RebuildModelSyncResponseV2

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

# convert the object into a dict
rebuild_model_sync_response_v2_dict = rebuild_model_sync_response_v2_instance.to_dict()
# create an instance of RebuildModelSyncResponseV2 from a dict
rebuild_model_sync_response_v2_form_dict = rebuild_model_sync_response_v2.from_dict(rebuild_model_sync_response_v2_dict)

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