Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.64 KB

File metadata and controls

33 lines (24 loc) · 1.64 KB

T3PackageLabelsPayloadDEPRECATED

Properties

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]

Example

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)

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