Skip to content

Commit

Permalink
v2.6.0rc1 (#83)
Browse files Browse the repository at this point in the history
* sdk built through Tir

* v2.6.0rc1 updates & comments api removed

* adding cleancmd to setup

Co-authored-by: Harsha Rahul Boggaram <[email protected]>
  • Loading branch information
harsharahul and harsharahul authored Aug 11, 2020
1 parent a7653ff commit 3824da2
Show file tree
Hide file tree
Showing 7 changed files with 120 additions and 163 deletions.
1 change: 0 additions & 1 deletion docusign_esign/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,6 @@
from .apis.billing_api import BillingApi
from .apis.bulk_envelopes_api import BulkEnvelopesApi
from .apis.cloud_storage_api import CloudStorageApi
from .apis.comments_api import CommentsApi
from .apis.connect_api import ConnectApi
from .apis.custom_tabs_api import CustomTabsApi
from .apis.diagnostics_api import DiagnosticsApi
Expand Down
6 changes: 1 addition & 5 deletions docusign_esign/apis/bulk_envelopes_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,6 @@ def list(self, account_id, **kwargs):
for asynchronous request. (optional)
:param str account_id: The external account number (int) or account ID Guid. (required)
:param str count: The number of results to return. This can be 1 to 20.
:param str include:
: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.
:return: BulkEnvelopesResponse
If the method is called asynchronously,
Expand Down Expand Up @@ -449,14 +448,13 @@ def list_with_http_info(self, account_id, **kwargs):
for asynchronous request. (optional)
:param str account_id: The external account number (int) or account ID Guid. (required)
:param str count: The number of results to return. This can be 1 to 20.
:param str include:
: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.
:return: BulkEnvelopesResponse
If the method is called asynchronously,
returns the request thread.
"""

all_params = ['account_id', 'count', 'include', 'start_position']
all_params = ['account_id', 'count', 'start_position']
all_params.append('callback')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
Expand Down Expand Up @@ -486,8 +484,6 @@ def list_with_http_info(self, account_id, **kwargs):
query_params = {}
if 'count' in params:
query_params['count'] = params['count']
if 'include' in params:
query_params['include'] = params['include']
if 'start_position' in params:
query_params['start_position'] = params['start_position']

Expand Down
153 changes: 0 additions & 153 deletions docusign_esign/apis/comments_api.py

This file was deleted.

30 changes: 29 additions & 1 deletion docusign_esign/models/new_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ class NewUser(object):
'created_date_time': 'str',
'email': 'str',
'error_details': 'ErrorDetails',
'membership_id': 'str',
'permission_profile_id': 'str',
'permission_profile_name': 'str',
'uri': 'str',
Expand All @@ -48,6 +49,7 @@ class NewUser(object):
'created_date_time': 'createdDateTime',
'email': 'email',
'error_details': 'errorDetails',
'membership_id': 'membershipId',
'permission_profile_id': 'permissionProfileId',
'permission_profile_name': 'permissionProfileName',
'uri': 'uri',
Expand All @@ -56,13 +58,14 @@ class NewUser(object):
'user_status': 'userStatus'
}

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
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
"""NewUser - a model defined in Swagger""" # noqa: E501

self._api_password = None
self._created_date_time = None
self._email = None
self._error_details = None
self._membership_id = None
self._permission_profile_id = None
self._permission_profile_name = None
self._uri = None
Expand All @@ -79,6 +82,8 @@ def __init__(self, api_password=None, created_date_time=None, email=None, error_
self.email = email
if error_details is not None:
self.error_details = error_details
if membership_id is not None:
self.membership_id = membership_id
if permission_profile_id is not None:
self.permission_profile_id = permission_profile_id
if permission_profile_name is not None:
Expand Down Expand Up @@ -182,6 +187,29 @@ def error_details(self, error_details):

self._error_details = error_details

@property
def membership_id(self):
"""Gets the membership_id of this NewUser. # noqa: E501
# noqa: E501
:return: The membership_id of this NewUser. # noqa: E501
:rtype: str
"""
return self._membership_id

@membership_id.setter
def membership_id(self, membership_id):
"""Sets the membership_id of this NewUser.
# noqa: E501
:param membership_id: The membership_id of this NewUser. # noqa: E501
:type: str
"""

self._membership_id = membership_id

@property
def permission_profile_id(self):
"""Gets the permission_profile_id of this NewUser. # noqa: E501
Expand Down
30 changes: 29 additions & 1 deletion docusign_esign/models/sender_email_notifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ class SenderEmailNotifications(object):
'delivery_failed': 'str',
'envelope_complete': 'str',
'offline_signing_failed': 'str',
'powerform_responses_limit_notification_email': 'str',
'recipient_viewed': 'str',
'sender_envelope_declined': 'str',
'withdrawn_consent': 'str'
Expand All @@ -49,12 +50,13 @@ class SenderEmailNotifications(object):
'delivery_failed': 'deliveryFailed',
'envelope_complete': 'envelopeComplete',
'offline_signing_failed': 'offlineSigningFailed',
'powerform_responses_limit_notification_email': 'powerformResponsesLimitNotificationEmail',
'recipient_viewed': 'recipientViewed',
'sender_envelope_declined': 'senderEnvelopeDeclined',
'withdrawn_consent': 'withdrawnConsent'
}

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
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
"""SenderEmailNotifications - a model defined in Swagger""" # noqa: E501

self._changed_signer = None
Expand All @@ -63,6 +65,7 @@ def __init__(self, changed_signer=None, comments_only_private_and_mention=None,
self._delivery_failed = None
self._envelope_complete = None
self._offline_signing_failed = None
self._powerform_responses_limit_notification_email = None
self._recipient_viewed = None
self._sender_envelope_declined = None
self._withdrawn_consent = None
Expand All @@ -80,6 +83,8 @@ def __init__(self, changed_signer=None, comments_only_private_and_mention=None,
self.envelope_complete = envelope_complete
if offline_signing_failed is not None:
self.offline_signing_failed = offline_signing_failed
if powerform_responses_limit_notification_email is not None:
self.powerform_responses_limit_notification_email = powerform_responses_limit_notification_email
if recipient_viewed is not None:
self.recipient_viewed = recipient_viewed
if sender_envelope_declined is not None:
Expand Down Expand Up @@ -225,6 +230,29 @@ def offline_signing_failed(self, offline_signing_failed):

self._offline_signing_failed = offline_signing_failed

@property
def powerform_responses_limit_notification_email(self):
"""Gets the powerform_responses_limit_notification_email of this SenderEmailNotifications. # noqa: E501
# noqa: E501
:return: The powerform_responses_limit_notification_email of this SenderEmailNotifications. # noqa: E501
:rtype: str
"""
return self._powerform_responses_limit_notification_email

@powerform_responses_limit_notification_email.setter
def powerform_responses_limit_notification_email(self, powerform_responses_limit_notification_email):
"""Sets the powerform_responses_limit_notification_email of this SenderEmailNotifications.
# noqa: E501
:param powerform_responses_limit_notification_email: The powerform_responses_limit_notification_email of this SenderEmailNotifications. # noqa: E501
:type: str
"""

self._powerform_responses_limit_notification_email = powerform_responses_limit_notification_email

@property
def recipient_viewed(self):
"""Gets the recipient_viewed of this SenderEmailNotifications. # noqa: E501
Expand Down
Loading

0 comments on commit 3824da2

Please sign in to comment.