Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 992 Bytes

File metadata and controls

33 lines (25 loc) · 992 Bytes

Algorithm

Properties

Name Type Description Notes
id int
project_id int
type AlgorithmType
shared ShareType
link str
name str

Example

from compute_api_client.models.algorithm import Algorithm

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

# convert the object into a dict
algorithm_dict = algorithm_instance.to_dict()
# create an instance of Algorithm from a dict
algorithm_form_dict = algorithm.from_dict(algorithm_dict)

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