Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1005 Bytes

File metadata and controls

29 lines (20 loc) · 1005 Bytes

ArticleLifecycleState

Properties

Name Type Description Notes
modified_at_secs int

Example

from twitter_openapi_python_generated.models.article_lifecycle_state import ArticleLifecycleState

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

# convert the object into a dict
article_lifecycle_state_dict = article_lifecycle_state_instance.to_dict()
# create an instance of ArticleLifecycleState from a dict
article_lifecycle_state_from_dict = ArticleLifecycleState.from_dict(article_lifecycle_state_dict)

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