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 8abc7f0 + 5187909 commit c40cc9cCopy full SHA for c40cc9c
eversign/__init__.py
@@ -13,11 +13,12 @@
13
CheckboxField,
14
RadioField,
15
DropdownField,
16
- AttachmentField
+ AttachmentField,
17
+ CheckboxGroupField
18
)
19
from eversign.business import Business
20
from eversign.log import Log
21
22
api_base = 'https://api.eversign.com/api'
23
oauth_base = 'https://eversign.com/oauth'
-debug = False
24
+debug = False
eversign/field.py
@@ -134,3 +134,11 @@ class AttachmentField(Field):
134
def __init__(self, **kwargs):
135
kwargs['type'] = 'attachment'
136
super(self.__class__, self).__init__(**kwargs)
137
+
138
139
+class CheckboxGroupField(Field):
140
+ merge_field = True
141
142
+ def __init__(self, **kwargs):
143
+ kwargs['type'] = 'checkboxGroup'
144
+ super(self.__class__, self).__init__(**kwargs)
0 commit comments