Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

SmartContentRequest.md

File metadata and controls

32 lines (23 loc) · 1.17 KB

SmartContentRequest

Properties

Name Type Description Notes
account_id int The account id.
model_id int The model id. [optional] [default to 1]
rules List[RuleRequest] [optional]
webpage_properties List[WebpageProperties] [optional]

Example

from wordlift_client.models.smart_content_request import SmartContentRequest

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

# convert the object into a dict
smart_content_request_dict = smart_content_request_instance.to_dict()
# create an instance of SmartContentRequest from a dict
smart_content_request_from_dict = SmartContentRequest.from_dict(smart_content_request_dict)

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