Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

WebsiteRequestCompound.md

File metadata and controls

31 lines (22 loc) · 1.21 KB

WebsiteRequestCompound

A Website Object and children to create a complete structure

Properties

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.

Example

from eZmaxApi.models.website_request_compound import WebsiteRequestCompound

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

# convert the object into a dict
website_request_compound_dict = website_request_compound_instance.to_dict()
# create an instance of WebsiteRequestCompound from a dict
website_request_compound_form_dict = website_request_compound.from_dict(website_request_compound_dict)

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