Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.13 KB

File metadata and controls

29 lines (20 loc) · 1.13 KB

T3LabelContentDataListResponse

Properties

Name Type Description Notes
data List[T3LabelContentData] [optional]

Example

from t3api.models.t3_label_content_data_list_response import T3LabelContentDataListResponse

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

# convert the object into a dict
t3_label_content_data_list_response_dict = t3_label_content_data_list_response_instance.to_dict()
# create an instance of T3LabelContentDataListResponse from a dict
t3_label_content_data_list_response_from_dict = T3LabelContentDataListResponse.from_dict(t3_label_content_data_list_response_dict)

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