Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.46 KB

File metadata and controls

38 lines (29 loc) · 1.46 KB

Implementation

Properties

Name Type Description Notes
id str Unique implementation identifier
status str Implementation status
platform str Platform used
implementation_method str Implementation method [optional]
credits_used float Credits consumed [optional]
created_at datetime Implementation start timestamp
completed_at datetime Implementation completion timestamp [optional]
metadata Dict[str, object] Platform-specific metadata [optional]
suggestion Suggestion
rollbacks List[Rollback] Rollback history [optional]

Example

from rankvectors.models.implementation import Implementation

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

# convert the object into a dict
implementation_dict = implementation_instance.to_dict()
# create an instance of Implementation from a dict
implementation_from_dict = Implementation.from_dict(implementation_dict)

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