Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 851 Bytes

File metadata and controls

31 lines (23 loc) · 851 Bytes

Link

Properties

Name Type Description Notes
relation str
href str
description str [optional]
method str

Example

from finbourne_access.models.link import Link

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

# convert the object into a dict
link_dict = link_instance.to_dict()
# create an instance of Link from a dict
link_form_dict = link.from_dict(link_dict)

Back to Model listBack to API listBack to README