Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 985 Bytes

TemplateVersionSpec.md

File metadata and controls

29 lines (20 loc) · 985 Bytes

TemplateVersionSpec

Properties

Name Type Description Notes
fleet str The fleet whose template this refers to.

Example

from flightctl.models.template_version_spec import TemplateVersionSpec

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

# convert the object into a dict
template_version_spec_dict = template_version_spec_instance.to_dict()
# create an instance of TemplateVersionSpec from a dict
template_version_spec_from_dict = TemplateVersionSpec.from_dict(template_version_spec_dict)

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