A Website Object
Name | Type | Description | Notes |
---|---|---|---|
fki_websitetype_id | int | The unique ID of the Websitetype. Valid values: | Value |
s_website_address | str | The URL of the website. |
from eZmaxApi.models.website_request import WebsiteRequest
# TODO update the JSON string below
json = "{}"
# create an instance of WebsiteRequest from a JSON string
website_request_instance = WebsiteRequest.from_json(json)
# print the JSON string representation of the object
print(WebsiteRequest.to_json())
# convert the object into a dict
website_request_dict = website_request_instance.to_dict()
# create an instance of WebsiteRequest from a dict
website_request_form_dict = website_request.from_dict(website_request_dict)