Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1009 Bytes

SemanticVersionRange.md

File metadata and controls

29 lines (20 loc) · 1009 Bytes

SemanticVersionRange

A range of semantic versions. See https://devhints.io/semver

Properties

Name Type Description Notes

Example

from waylay.services.registry.models.semantic_version_range import SemanticVersionRange

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

# convert the object into a dict
semantic_version_range_dict = semantic_version_range_instance.to_dict()
# create an instance of SemanticVersionRange from a dict
semantic_version_range_form_dict = semantic_version_range.from_dict(semantic_version_range_dict)

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