ArticleLifecycleState

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
modified_at_secsint

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]