Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
270 changes: 135 additions & 135 deletions Infoplus/api/aisle_api.py

Large diffs are not rendered by default.

234 changes: 117 additions & 117 deletions Infoplus/api/alert_api.py

Large diffs are not rendered by default.

270 changes: 135 additions & 135 deletions Infoplus/api/asn_api.py

Large diffs are not rendered by default.

270 changes: 135 additions & 135 deletions Infoplus/api/bill_of_lading_api.py

Large diffs are not rendered by default.

252 changes: 126 additions & 126 deletions Infoplus/api/billing_code_activity_api.py

Large diffs are not rendered by default.

270 changes: 135 additions & 135 deletions Infoplus/api/billing_code_api.py

Large diffs are not rendered by default.

270 changes: 135 additions & 135 deletions Infoplus/api/billing_code_type_api.py

Large diffs are not rendered by default.

270 changes: 135 additions & 135 deletions Infoplus/api/building_api.py

Large diffs are not rendered by default.

252 changes: 126 additions & 126 deletions Infoplus/api/business_transaction_api.py

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions Infoplus/api/carrier_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@ def get_carrier_by_id(self, carrier_id, **kwargs): # noqa: E501

Returns the carrier identified by the specified id. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_carrier_by_id(carrier_id, async=True)
asynchronous HTTP request, please pass _async=True
>>> thread = api.get_carrier_by_id(carrier_id, _async=True)
>>> result = thread.get()

:param async bool
:param _async bool
:param str carrier_id: Id of carrier to be returned. (required)
:return: Carrier
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
if kwargs.get('async'):
if kwargs.get('_async'):
return self.get_carrier_by_id_with_http_info(carrier_id, **kwargs) # noqa: E501
else:
(data) = self.get_carrier_by_id_with_http_info(carrier_id, **kwargs) # noqa: E501
Expand All @@ -60,19 +60,19 @@ def get_carrier_by_id_with_http_info(self, carrier_id, **kwargs): # noqa: E501

Returns the carrier identified by the specified id. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_carrier_by_id_with_http_info(carrier_id, async=True)
asynchronous HTTP request, please pass _async=True
>>> thread = api.get_carrier_by_id_with_http_info(carrier_id, _async=True)
>>> result = thread.get()

:param async bool
:param _async bool
:param str carrier_id: Id of carrier to be returned. (required)
:return: Carrier
If the method is called asynchronously,
returns the request thread.
"""

all_params = ['carrier_id'] # noqa: E501
all_params.append('async')
all_params.append('_async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
all_params.append('_request_timeout')
Expand Down Expand Up @@ -122,7 +122,7 @@ def get_carrier_by_id_with_http_info(self, carrier_id, **kwargs): # noqa: E501
files=local_var_files,
response_type='Carrier', # noqa: E501
auth_settings=auth_settings,
async=params.get('async'),
_async=params.get('_async'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
Expand All @@ -133,11 +133,11 @@ def get_carrier_by_search_text(self, **kwargs): # noqa: E501

Returns the list of carriers that match the given searchText. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_carrier_by_search_text(async=True)
asynchronous HTTP request, please pass _async=True
>>> thread = api.get_carrier_by_search_text(_async=True)
>>> result = thread.get()

:param async bool
:param _async bool
:param str search_text: Search text, used to filter results.
:param int page: Result page number. Defaults to 1.
:param int limit: Maximum results per page. Defaults to 20. Max allowed value is 250.
Expand All @@ -146,7 +146,7 @@ def get_carrier_by_search_text(self, **kwargs): # noqa: E501
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
if kwargs.get('async'):
if kwargs.get('_async'):
return self.get_carrier_by_search_text_with_http_info(**kwargs) # noqa: E501
else:
(data) = self.get_carrier_by_search_text_with_http_info(**kwargs) # noqa: E501
Expand All @@ -157,11 +157,11 @@ def get_carrier_by_search_text_with_http_info(self, **kwargs): # noqa: E501

Returns the list of carriers that match the given searchText. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_carrier_by_search_text_with_http_info(async=True)
asynchronous HTTP request, please pass _async=True
>>> thread = api.get_carrier_by_search_text_with_http_info(_async=True)
>>> result = thread.get()

:param async bool
:param _async bool
:param str search_text: Search text, used to filter results.
:param int page: Result page number. Defaults to 1.
:param int limit: Maximum results per page. Defaults to 20. Max allowed value is 250.
Expand All @@ -171,7 +171,7 @@ def get_carrier_by_search_text_with_http_info(self, **kwargs): # noqa: E501
"""

all_params = ['search_text', 'page', 'limit'] # noqa: E501
all_params.append('async')
all_params.append('_async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
all_params.append('_request_timeout')
Expand Down Expand Up @@ -221,7 +221,7 @@ def get_carrier_by_search_text_with_http_info(self, **kwargs): # noqa: E501
files=local_var_files,
response_type='list[Carrier]', # noqa: E501
auth_settings=auth_settings,
async=params.get('async'),
_async=params.get('_async'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
Expand Down
36 changes: 18 additions & 18 deletions Infoplus/api/carrier_service_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@ def get_carrier_service_by_id(self, carrier_service_id, **kwargs): # noqa: E501

Returns the carrierService identified by the specified id. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_carrier_service_by_id(carrier_service_id, async=True)
asynchronous HTTP request, please pass _async=True
>>> thread = api.get_carrier_service_by_id(carrier_service_id, _async=True)
>>> result = thread.get()

:param async bool
:param _async bool
:param str carrier_service_id: Id of carrierService to be returned. (required)
:return: CarrierService
If the method is called asynchronously,
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
if kwargs.get('async'):
if kwargs.get('_async'):
return self.get_carrier_service_by_id_with_http_info(carrier_service_id, **kwargs) # noqa: E501
else:
(data) = self.get_carrier_service_by_id_with_http_info(carrier_service_id, **kwargs) # noqa: E501
Expand All @@ -60,19 +60,19 @@ def get_carrier_service_by_id_with_http_info(self, carrier_service_id, **kwargs)

Returns the carrierService identified by the specified id. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_carrier_service_by_id_with_http_info(carrier_service_id, async=True)
asynchronous HTTP request, please pass _async=True
>>> thread = api.get_carrier_service_by_id_with_http_info(carrier_service_id, _async=True)
>>> result = thread.get()

:param async bool
:param _async bool
:param str carrier_service_id: Id of carrierService to be returned. (required)
:return: CarrierService
If the method is called asynchronously,
returns the request thread.
"""

all_params = ['carrier_service_id'] # noqa: E501
all_params.append('async')
all_params.append('_async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
all_params.append('_request_timeout')
Expand Down Expand Up @@ -122,7 +122,7 @@ def get_carrier_service_by_id_with_http_info(self, carrier_service_id, **kwargs)
files=local_var_files,
response_type='CarrierService', # noqa: E501
auth_settings=auth_settings,
async=params.get('async'),
_async=params.get('_async'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
Expand All @@ -133,11 +133,11 @@ def get_carrier_service_by_search_text(self, **kwargs): # noqa: E501

Returns the list of carrierServices that match the given searchText. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_carrier_service_by_search_text(async=True)
asynchronous HTTP request, please pass _async=True
>>> thread = api.get_carrier_service_by_search_text(_async=True)
>>> result = thread.get()

:param async bool
:param _async bool
:param str search_text: Search text, used to filter results.
:param int page: Result page number. Defaults to 1.
:param int limit: Maximum results per page. Defaults to 20. Max allowed value is 250.
Expand All @@ -146,7 +146,7 @@ def get_carrier_service_by_search_text(self, **kwargs): # noqa: E501
returns the request thread.
"""
kwargs['_return_http_data_only'] = True
if kwargs.get('async'):
if kwargs.get('_async'):
return self.get_carrier_service_by_search_text_with_http_info(**kwargs) # noqa: E501
else:
(data) = self.get_carrier_service_by_search_text_with_http_info(**kwargs) # noqa: E501
Expand All @@ -157,11 +157,11 @@ def get_carrier_service_by_search_text_with_http_info(self, **kwargs): # noqa:

Returns the list of carrierServices that match the given searchText. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_carrier_service_by_search_text_with_http_info(async=True)
asynchronous HTTP request, please pass _async=True
>>> thread = api.get_carrier_service_by_search_text_with_http_info(_async=True)
>>> result = thread.get()

:param async bool
:param _async bool
:param str search_text: Search text, used to filter results.
:param int page: Result page number. Defaults to 1.
:param int limit: Maximum results per page. Defaults to 20. Max allowed value is 250.
Expand All @@ -171,7 +171,7 @@ def get_carrier_service_by_search_text_with_http_info(self, **kwargs): # noqa:
"""

all_params = ['search_text', 'page', 'limit'] # noqa: E501
all_params.append('async')
all_params.append('_async')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
all_params.append('_request_timeout')
Expand Down Expand Up @@ -221,7 +221,7 @@ def get_carrier_service_by_search_text_with_http_info(self, **kwargs): # noqa:
files=local_var_files,
response_type='list[CarrierService]', # noqa: E501
auth_settings=auth_settings,
async=params.get('async'),
_async=params.get('_async'),
_return_http_data_only=params.get('_return_http_data_only'),
_preload_content=params.get('_preload_content', True),
_request_timeout=params.get('_request_timeout'),
Expand Down
Loading