Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 866 Bytes

Website.md

File metadata and controls

30 lines (21 loc) · 866 Bytes

Website

A Website

Properties

Name Type Description Notes
url str The Website URL, it may also start with thew `sc-domain:` prefix.

Example

from wordlift_client.models.website import Website

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

# convert the object into a dict
website_dict = website_instance.to_dict()
# create an instance of Website from a dict
website_from_dict = Website.from_dict(website_dict)

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