Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

GrokShareAttachmentItem

Properties

Name Type Description Notes
analysis_post_id_results AnalysisResults [optional]
media_urls List[str]
message str

Example

from twitter_openapi_python_generated.models.grok_share_attachment_item import GrokShareAttachmentItem

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

# convert the object into a dict
grok_share_attachment_item_dict = grok_share_attachment_item_instance.to_dict()
# create an instance of GrokShareAttachmentItem from a dict
grok_share_attachment_item_from_dict = GrokShareAttachmentItem.from_dict(grok_share_attachment_item_dict)

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