| Name | Type | Description | Notes |
|---|---|---|---|
| label_template_layout_id | str | The identifier for the label template configuration | |
| label_content_layout_id | str | The identifier for the label content configuration. | |
| data | List[str] | An array of tags | |
| rendering_options | V2FilesLabelsContentDataPackagesActivePostRequestRenderingOptions | [optional] | |
| debug | bool | When set to true, draws bounding boxes around the label containers, the printable area, and the individual elements per label. | [optional] |
from t3api.models.t3_package_labels_payload_deprecated import T3PackageLabelsPayloadDEPRECATED
# TODO update the JSON string below
json = "{}"
# create an instance of T3PackageLabelsPayloadDEPRECATED from a JSON string
t3_package_labels_payload_deprecated_instance = T3PackageLabelsPayloadDEPRECATED.from_json(json)
# print the JSON string representation of the object
print(T3PackageLabelsPayloadDEPRECATED.to_json())
# convert the object into a dict
t3_package_labels_payload_deprecated_dict = t3_package_labels_payload_deprecated_instance.to_dict()
# create an instance of T3PackageLabelsPayloadDEPRECATED from a dict
t3_package_labels_payload_deprecated_from_dict = T3PackageLabelsPayloadDEPRECATED.from_dict(t3_package_labels_payload_deprecated_dict)