Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.11 KB

File metadata and controls

34 lines (25 loc) · 1.11 KB

ImageTagReference

Properties

Name Type Description Notes
tag_id str
enforce_trusted bool [optional] [default to True]
uri str
owner OwnerReference [optional]
name str
version str

Example

from saturn_api.models.image_tag_reference import ImageTagReference

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

# convert the object into a dict
image_tag_reference_dict = image_tag_reference_instance.to_dict()
# create an instance of ImageTagReference from a dict
image_tag_reference_from_dict = ImageTagReference.from_dict(image_tag_reference_dict)

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