Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 862 Bytes

BuildSpec.md

File metadata and controls

30 lines (21 loc) · 862 Bytes

BuildSpec

Properties

Name Type Description Notes
context str
args Dict[str, str]

Example

from waylay.services.registry.models.build_spec import BuildSpec

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

# convert the object into a dict
build_spec_dict = build_spec_instance.to_dict()
# create an instance of BuildSpec from a dict
build_spec_form_dict = build_spec.from_dict(build_spec_dict)

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