Name | Type | Description | Notes |
---|---|---|---|
id | int | ||
project_id | int | ||
type | AlgorithmType | ||
shared | ShareType | ||
link | str | ||
name | str |
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)