Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

AltVersionHALLink.md

File metadata and controls

30 lines (21 loc) · 1.07 KB

AltVersionHALLink

Properties

Name Type Description Notes
draft AltVersionHALLinkDraft [optional]
published AltVersionHALLinkPublished [optional]

Example

from waylay.services.registry.models.alt_version_hal_link import AltVersionHALLink

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

# convert the object into a dict
alt_version_hal_link_dict = alt_version_hal_link_instance.to_dict()
# create an instance of AltVersionHALLink from a dict
alt_version_hal_link_form_dict = alt_version_hal_link.from_dict(alt_version_hal_link_dict)

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