Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1006 Bytes

File metadata and controls

31 lines (22 loc) · 1006 Bytes

LinkSchema

Properties

Name Type Description Notes
href str URI of the link. [optional]
rel str Specifies the relationship between this link and the resource. [optional]
method str HTTP method to be used. [optional]

Example

from bandwidth.models.link_schema import LinkSchema

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

# convert the object into a dict
link_schema_dict = link_schema_instance.to_dict()
# create an instance of LinkSchema from a dict
link_schema_from_dict = LinkSchema.from_dict(link_schema_dict)

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