Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

AltVersionHALLinkDraft.md

File metadata and controls

33 lines (24 loc) · 1.13 KB

AltVersionHALLinkDraft

Link to the lastest draft version.

Properties

Name Type Description Notes
draft bool
href HALLinkHref
version str
deprecated bool

Example

from waylay.services.registry.models.alt_version_hal_link_draft import AltVersionHALLinkDraft

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

# convert the object into a dict
alt_version_hal_link_draft_dict = alt_version_hal_link_draft_instance.to_dict()
# create an instance of AltVersionHALLinkDraft from a dict
alt_version_hal_link_draft_form_dict = alt_version_hal_link_draft.from_dict(alt_version_hal_link_draft_dict)

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