Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.09 KB

SmartContent.md

File metadata and controls

33 lines (24 loc) · 1.09 KB

SmartContent

A Smart Content project.

Properties

Name Type Description Notes
account_id int The account id. [readonly]
created_at datetime The create date-time. [optional] [readonly]
id int The unique id. [optional] [readonly]
model_id int The model id. [optional] [default to 1]

Example

from wordlift_client.models.smart_content import SmartContent

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

# convert the object into a dict
smart_content_dict = smart_content_instance.to_dict()
# create an instance of SmartContent from a dict
smart_content_from_dict = SmartContent.from_dict(smart_content_dict)

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