Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1013 Bytes

AlgorithmIn.md

File metadata and controls

32 lines (24 loc) · 1013 Bytes

AlgorithmIn

Properties

Name Type Description Notes
project_id int
type AlgorithmType
shared ShareType
link str [optional]
name str

Example

from compute_api_client.models.algorithm_in import AlgorithmIn

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

# convert the object into a dict
algorithm_in_dict = algorithm_in_instance.to_dict()
# create an instance of AlgorithmIn from a dict
algorithm_in_form_dict = algorithm_in.from_dict(algorithm_in_dict)

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