Skip to content

Commit 3824da2

Browse files
authored
v2.6.0rc1 (#83)
* sdk built through Tir * v2.6.0rc1 updates & comments api removed * adding cleancmd to setup Co-authored-by: Harsha Rahul Boggaram <[email protected]>
1 parent a7653ff commit 3824da2

File tree

7 files changed

+120
-163
lines changed

7 files changed

+120
-163
lines changed

docusign_esign/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,6 @@
384384
from .apis.billing_api import BillingApi
385385
from .apis.bulk_envelopes_api import BulkEnvelopesApi
386386
from .apis.cloud_storage_api import CloudStorageApi
387-
from .apis.comments_api import CommentsApi
388387
from .apis.connect_api import ConnectApi
389388
from .apis.custom_tabs_api import CustomTabsApi
390389
from .apis.diagnostics_api import DiagnosticsApi

docusign_esign/apis/bulk_envelopes_api.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,6 @@ def list(self, account_id, **kwargs):
420420
for asynchronous request. (optional)
421421
:param str account_id: The external account number (int) or account ID Guid. (required)
422422
:param str count: The number of results to return. This can be 1 to 20.
423-
:param str include:
424423
:param str start_position: The position of the bulk envelope items in the response. This is used for repeated calls, when the number of bulk envelopes returned is too large for one return. The default value is 0.
425424
:return: BulkEnvelopesResponse
426425
If the method is called asynchronously,
@@ -449,14 +448,13 @@ def list_with_http_info(self, account_id, **kwargs):
449448
for asynchronous request. (optional)
450449
:param str account_id: The external account number (int) or account ID Guid. (required)
451450
:param str count: The number of results to return. This can be 1 to 20.
452-
:param str include:
453451
:param str start_position: The position of the bulk envelope items in the response. This is used for repeated calls, when the number of bulk envelopes returned is too large for one return. The default value is 0.
454452
:return: BulkEnvelopesResponse
455453
If the method is called asynchronously,
456454
returns the request thread.
457455
"""
458456

459-
all_params = ['account_id', 'count', 'include', 'start_position']
457+
all_params = ['account_id', 'count', 'start_position']
460458
all_params.append('callback')
461459
all_params.append('_return_http_data_only')
462460
all_params.append('_preload_content')
@@ -486,8 +484,6 @@ def list_with_http_info(self, account_id, **kwargs):
486484
query_params = {}
487485
if 'count' in params:
488486
query_params['count'] = params['count']
489-
if 'include' in params:
490-
query_params['include'] = params['include']
491487
if 'start_position' in params:
492488
query_params['start_position'] = params['start_position']
493489

docusign_esign/apis/comments_api.py

Lines changed: 0 additions & 153 deletions
This file was deleted.

docusign_esign/models/new_user.py

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ class NewUser(object):
3535
'created_date_time': 'str',
3636
'email': 'str',
3737
'error_details': 'ErrorDetails',
38+
'membership_id': 'str',
3839
'permission_profile_id': 'str',
3940
'permission_profile_name': 'str',
4041
'uri': 'str',
@@ -48,6 +49,7 @@ class NewUser(object):
4849
'created_date_time': 'createdDateTime',
4950
'email': 'email',
5051
'error_details': 'errorDetails',
52+
'membership_id': 'membershipId',
5153
'permission_profile_id': 'permissionProfileId',
5254
'permission_profile_name': 'permissionProfileName',
5355
'uri': 'uri',
@@ -56,13 +58,14 @@ class NewUser(object):
5658
'user_status': 'userStatus'
5759
}
5860

59-
def __init__(self, api_password=None, created_date_time=None, email=None, error_details=None, permission_profile_id=None, permission_profile_name=None, uri=None, user_id=None, user_name=None, user_status=None): # noqa: E501
61+
def __init__(self, api_password=None, created_date_time=None, email=None, error_details=None, membership_id=None, permission_profile_id=None, permission_profile_name=None, uri=None, user_id=None, user_name=None, user_status=None): # noqa: E501
6062
"""NewUser - a model defined in Swagger""" # noqa: E501
6163

6264
self._api_password = None
6365
self._created_date_time = None
6466
self._email = None
6567
self._error_details = None
68+
self._membership_id = None
6669
self._permission_profile_id = None
6770
self._permission_profile_name = None
6871
self._uri = None
@@ -79,6 +82,8 @@ def __init__(self, api_password=None, created_date_time=None, email=None, error_
7982
self.email = email
8083
if error_details is not None:
8184
self.error_details = error_details
85+
if membership_id is not None:
86+
self.membership_id = membership_id
8287
if permission_profile_id is not None:
8388
self.permission_profile_id = permission_profile_id
8489
if permission_profile_name is not None:
@@ -182,6 +187,29 @@ def error_details(self, error_details):
182187

183188
self._error_details = error_details
184189

190+
@property
191+
def membership_id(self):
192+
"""Gets the membership_id of this NewUser. # noqa: E501
193+
194+
# noqa: E501
195+
196+
:return: The membership_id of this NewUser. # noqa: E501
197+
:rtype: str
198+
"""
199+
return self._membership_id
200+
201+
@membership_id.setter
202+
def membership_id(self, membership_id):
203+
"""Sets the membership_id of this NewUser.
204+
205+
# noqa: E501
206+
207+
:param membership_id: The membership_id of this NewUser. # noqa: E501
208+
:type: str
209+
"""
210+
211+
self._membership_id = membership_id
212+
185213
@property
186214
def permission_profile_id(self):
187215
"""Gets the permission_profile_id of this NewUser. # noqa: E501

docusign_esign/models/sender_email_notifications.py

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ class SenderEmailNotifications(object):
3737
'delivery_failed': 'str',
3838
'envelope_complete': 'str',
3939
'offline_signing_failed': 'str',
40+
'powerform_responses_limit_notification_email': 'str',
4041
'recipient_viewed': 'str',
4142
'sender_envelope_declined': 'str',
4243
'withdrawn_consent': 'str'
@@ -49,12 +50,13 @@ class SenderEmailNotifications(object):
4950
'delivery_failed': 'deliveryFailed',
5051
'envelope_complete': 'envelopeComplete',
5152
'offline_signing_failed': 'offlineSigningFailed',
53+
'powerform_responses_limit_notification_email': 'powerformResponsesLimitNotificationEmail',
5254
'recipient_viewed': 'recipientViewed',
5355
'sender_envelope_declined': 'senderEnvelopeDeclined',
5456
'withdrawn_consent': 'withdrawnConsent'
5557
}
5658

57-
def __init__(self, changed_signer=None, comments_only_private_and_mention=None, comments_receive_all=None, delivery_failed=None, envelope_complete=None, offline_signing_failed=None, recipient_viewed=None, sender_envelope_declined=None, withdrawn_consent=None): # noqa: E501
59+
def __init__(self, changed_signer=None, comments_only_private_and_mention=None, comments_receive_all=None, delivery_failed=None, envelope_complete=None, offline_signing_failed=None, powerform_responses_limit_notification_email=None, recipient_viewed=None, sender_envelope_declined=None, withdrawn_consent=None): # noqa: E501
5860
"""SenderEmailNotifications - a model defined in Swagger""" # noqa: E501
5961

6062
self._changed_signer = None
@@ -63,6 +65,7 @@ def __init__(self, changed_signer=None, comments_only_private_and_mention=None,
6365
self._delivery_failed = None
6466
self._envelope_complete = None
6567
self._offline_signing_failed = None
68+
self._powerform_responses_limit_notification_email = None
6669
self._recipient_viewed = None
6770
self._sender_envelope_declined = None
6871
self._withdrawn_consent = None
@@ -80,6 +83,8 @@ def __init__(self, changed_signer=None, comments_only_private_and_mention=None,
8083
self.envelope_complete = envelope_complete
8184
if offline_signing_failed is not None:
8285
self.offline_signing_failed = offline_signing_failed
86+
if powerform_responses_limit_notification_email is not None:
87+
self.powerform_responses_limit_notification_email = powerform_responses_limit_notification_email
8388
if recipient_viewed is not None:
8489
self.recipient_viewed = recipient_viewed
8590
if sender_envelope_declined is not None:
@@ -225,6 +230,29 @@ def offline_signing_failed(self, offline_signing_failed):
225230

226231
self._offline_signing_failed = offline_signing_failed
227232

233+
@property
234+
def powerform_responses_limit_notification_email(self):
235+
"""Gets the powerform_responses_limit_notification_email of this SenderEmailNotifications. # noqa: E501
236+
237+
# noqa: E501
238+
239+
:return: The powerform_responses_limit_notification_email of this SenderEmailNotifications. # noqa: E501
240+
:rtype: str
241+
"""
242+
return self._powerform_responses_limit_notification_email
243+
244+
@powerform_responses_limit_notification_email.setter
245+
def powerform_responses_limit_notification_email(self, powerform_responses_limit_notification_email):
246+
"""Sets the powerform_responses_limit_notification_email of this SenderEmailNotifications.
247+
248+
# noqa: E501
249+
250+
:param powerform_responses_limit_notification_email: The powerform_responses_limit_notification_email of this SenderEmailNotifications. # noqa: E501
251+
:type: str
252+
"""
253+
254+
self._powerform_responses_limit_notification_email = powerform_responses_limit_notification_email
255+
228256
@property
229257
def recipient_viewed(self):
230258
"""Gets the recipient_viewed of this SenderEmailNotifications. # noqa: E501

0 commit comments

Comments
 (0)