Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.18 KB

File metadata and controls

36 lines (27 loc) · 1.18 KB

T3LabelContentData

Properties

Name Type Description Notes
text1 str [optional]
text2 str [optional]
text3 str [optional]
text4 str [optional]
text5 str [optional]
text6 str [optional]
text7 str [optional]
text8 str [optional]

Example

from t3api.models.t3_label_content_data import T3LabelContentData

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

# convert the object into a dict
t3_label_content_data_dict = t3_label_content_data_instance.to_dict()
# create an instance of T3LabelContentData from a dict
t3_label_content_data_from_dict = T3LabelContentData.from_dict(t3_label_content_data_dict)

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