Options for controlling how the barcode will render.
| Name | Type | Description | Notes |
|---|---|---|---|
| debug | bool | [optional] | |
| enable_promo | bool | [optional] | |
| reverse_print_order | bool | [optional] | |
| rotation_degrees | float | [optional] | |
| barcode_bar_thickness | float | Controls how thick a barcode's bars will appear. Useful for low-DPI thermal printers. Tested values: - Zebra printers with a Code128 should use 0.94 - Dymo printers with a Code128 should use 0.8 - 1.0 is normal rendering. - 0.9 is 10% thinner - 1.1 is 10% thicker | [optional] |
| label_margin_thickness | float | Controls width of a label's margins. Useful for thermal printers with slighly skewed printing. - 1.0 is normal margin. - 0.9 is 10% thinner - 1.1 is 10% thicker | [optional] |
from t3api.models.v2_files_labels_generate_post_request_rendering_options import V2FilesLabelsGeneratePostRequestRenderingOptions
# TODO update the JSON string below
json = "{}"
# create an instance of V2FilesLabelsGeneratePostRequestRenderingOptions from a JSON string
v2_files_labels_generate_post_request_rendering_options_instance = V2FilesLabelsGeneratePostRequestRenderingOptions.from_json(json)
# print the JSON string representation of the object
print(V2FilesLabelsGeneratePostRequestRenderingOptions.to_json())
# convert the object into a dict
v2_files_labels_generate_post_request_rendering_options_dict = v2_files_labels_generate_post_request_rendering_options_instance.to_dict()
# create an instance of V2FilesLabelsGeneratePostRequestRenderingOptions from a dict
v2_files_labels_generate_post_request_rendering_options_from_dict = V2FilesLabelsGeneratePostRequestRenderingOptions.from_dict(v2_files_labels_generate_post_request_rendering_options_dict)