Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 929 Bytes

File metadata and controls

29 lines (20 loc) · 929 Bytes

GrokAnnotation

Properties

Name Type Description Notes
is_image_editable_by_grok bool [optional]

Example

from twitter_openapi_python_generated.models.grok_annotation import GrokAnnotation

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

# convert the object into a dict
grok_annotation_dict = grok_annotation_instance.to_dict()
# create an instance of GrokAnnotation from a dict
grok_annotation_from_dict = GrokAnnotation.from_dict(grok_annotation_dict)

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