We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e135691 + bb027f8 commit 864f8baCopy full SHA for 864f8ba
lob_python/model/letter.py
@@ -97,8 +97,15 @@ class Letter(ModelNormal):
97
}
98
99
validations = {
100
- ('tracking_events',): {
101
- 'max_items': 0,
+ ('template_id',): {
+ 'regex': {
102
+ 'pattern': r'^tmpl_[a-zA-Z0-9]+$', # noqa: E501
103
+ },
104
105
+ ('template_version_id',): {
106
107
+ 'pattern': r'^vrsn_[a-zA-Z0-9]+$', # noqa: E501
108
109
},
110
111
setup.py
@@ -11,7 +11,7 @@
11
from setuptools import setup, find_packages # noqa: H301
12
13
NAME = "lob-python"
14
-VERSION = "5.1.2"
+VERSION = "5.1.3"
15
# To install the library, run the following
16
#
17
# python setup.py install
0 commit comments