-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 2.5.0rc1-v2-20.2.00 release (#76)
Co-authored-by: automation <[email protected]>
- Loading branch information
1 parent
ac47068
commit 4707c98
Showing
4 changed files
with
149 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
# coding: utf-8 | ||
|
||
""" | ||
DocuSign REST API | ||
The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. # noqa: E501 | ||
OpenAPI spec version: v2 | ||
Contact: [email protected] | ||
Generated by: https://github.com/swagger-api/swagger-codegen.git | ||
""" | ||
|
||
|
||
from __future__ import absolute_import | ||
|
||
import sys | ||
import os | ||
import re | ||
|
||
# python 2 and python 3 compatibility library | ||
from six import iteritems | ||
|
||
from ..client.configuration import Configuration | ||
from ..client.api_client import ApiClient | ||
|
||
|
||
class TrustServiceProvidersApi(object): | ||
""" | ||
NOTE: This class is auto generated by the swagger code generator program. | ||
Do not edit the class manually. | ||
Ref: https://github.com/swagger-api/swagger-codegen | ||
""" | ||
|
||
def __init__(self, api_client=None): | ||
config = Configuration() | ||
if api_client: | ||
self.api_client = api_client | ||
else: | ||
if not config.api_client: | ||
config.api_client = ApiClient() | ||
self.api_client = config.api_client | ||
|
||
def get_seal_providers(self, account_id, **kwargs): | ||
""" | ||
Returns Account available seals for specified account. | ||
This method makes a synchronous HTTP request by default. To make an | ||
asynchronous HTTP request, please define a `callback` function | ||
to be invoked when receiving the response. | ||
>>> def callback_function(response): | ||
>>> pprint(response) | ||
>>> | ||
>>> thread = api.get_seal_providers(account_id, callback=callback_function) | ||
:param callback function: The callback function | ||
for asynchronous request. (optional) | ||
:param str account_id: The external account number (int) or account ID Guid. (required) | ||
:return: AccountSeals | ||
If the method is called asynchronously, | ||
returns the request thread. | ||
""" | ||
kwargs['_return_http_data_only'] = True | ||
if kwargs.get('callback'): | ||
return self.get_seal_providers_with_http_info(account_id, **kwargs) | ||
else: | ||
(data) = self.get_seal_providers_with_http_info(account_id, **kwargs) | ||
return data | ||
|
||
def get_seal_providers_with_http_info(self, account_id, **kwargs): | ||
""" | ||
Returns Account available seals for specified account. | ||
This method makes a synchronous HTTP request by default. To make an | ||
asynchronous HTTP request, please define a `callback` function | ||
to be invoked when receiving the response. | ||
>>> def callback_function(response): | ||
>>> pprint(response) | ||
>>> | ||
>>> thread = api.get_seal_providers_with_http_info(account_id, callback=callback_function) | ||
:param callback function: The callback function | ||
for asynchronous request. (optional) | ||
:param str account_id: The external account number (int) or account ID Guid. (required) | ||
:return: AccountSeals | ||
If the method is called asynchronously, | ||
returns the request thread. | ||
""" | ||
|
||
all_params = ['account_id'] | ||
all_params.append('callback') | ||
all_params.append('_return_http_data_only') | ||
all_params.append('_preload_content') | ||
all_params.append('_request_timeout') | ||
|
||
params = locals() | ||
for key, val in iteritems(params['kwargs']): | ||
if key not in all_params: | ||
raise TypeError( | ||
"Got an unexpected keyword argument '%s'" | ||
" to method get_seal_providers" % key | ||
) | ||
params[key] = val | ||
del params['kwargs'] | ||
# verify the required parameter 'account_id' is set | ||
if ('account_id' not in params) or (params['account_id'] is None): | ||
raise ValueError("Missing the required parameter `account_id` when calling `get_seal_providers`") | ||
|
||
|
||
collection_formats = {} | ||
|
||
resource_path = '/v2/accounts/{accountId}/seals'.replace('{format}', 'json') | ||
path_params = {} | ||
if 'account_id' in params: | ||
path_params['accountId'] = params['account_id'] | ||
|
||
query_params = {} | ||
|
||
header_params = {} | ||
|
||
form_params = [] | ||
local_var_files = {} | ||
|
||
body_params = None | ||
# HTTP header `Accept` | ||
header_params['Accept'] = self.api_client.\ | ||
select_header_accept(['application/json']) | ||
|
||
# Authentication setting | ||
auth_settings = [] | ||
|
||
return self.api_client.call_api(resource_path, 'GET', | ||
path_params, | ||
query_params, | ||
header_params, | ||
body=body_params, | ||
post_params=form_params, | ||
files=local_var_files, | ||
response_type='AccountSeals', | ||
auth_settings=auth_settings, | ||
callback=params.get('callback'), | ||
_return_http_data_only=params.get('_return_http_data_only'), | ||
_preload_content=params.get('_preload_content', True), | ||
_request_timeout=params.get('_request_timeout'), | ||
collection_formats=collection_formats) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters