We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83e92ca commit fa7f60bCopy full SHA for fa7f60b
1 file changed
lob_python/model/letter.py
@@ -96,7 +96,18 @@ class Letter(ModelNormal):
96
},
97
}
98
99
- validations = {}
+ validations = {
100
+ ('file_template_id',): {
101
+ 'regex': {
102
+ 'pattern': r'^tmpl_[a-zA-Z0-9]+$', # noqa: E501
103
+ },
104
105
+ ('file_template_version_id',): {
106
107
+ 'pattern': r'^vrsn_[a-zA-Z0-9]+$', # noqa: E501
108
109
110
+ }
111
112
@cached_property
113
def additional_properties_type():
0 commit comments