text
stringlengths
0
828
""""""Replace FixedRateShipping
Replace all attributes of FixedRateShipping
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.replace_fixed_rate_shipping_by_id(fixed_rate_shipping_id, fixed_rate_shipping, async=True)
>>> result = thread.get()
:param async bool
:param str fixed_rate_shipping_id: ID of fixedRateShipping to replace (required)
:param FixedRateShipping fixed_rate_shipping: Attributes of fixedRateShipping to replace (required)
:return: FixedRateShipping
If the method is called asynchronously,
returns the request thread.
""""""
kwargs['_return_http_data_only'] = True
if kwargs.get('async'):
return cls._replace_fixed_rate_shipping_by_id_with_http_info(fixed_rate_shipping_id, fixed_rate_shipping, **kwargs)
else:
(data) = cls._replace_fixed_rate_shipping_by_id_with_http_info(fixed_rate_shipping_id, fixed_rate_shipping, **kwargs)
return data"
4770,"def update_fixed_rate_shipping_by_id(cls, fixed_rate_shipping_id, fixed_rate_shipping, **kwargs):
""""""Update FixedRateShipping
Update attributes of FixedRateShipping
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.update_fixed_rate_shipping_by_id(fixed_rate_shipping_id, fixed_rate_shipping, async=True)
>>> result = thread.get()
:param async bool
:param str fixed_rate_shipping_id: ID of fixedRateShipping to update. (required)
:param FixedRateShipping fixed_rate_shipping: Attributes of fixedRateShipping to update. (required)
:return: FixedRateShipping
If the method is called asynchronously,
returns the request thread.
""""""
kwargs['_return_http_data_only'] = True
if kwargs.get('async'):
return cls._update_fixed_rate_shipping_by_id_with_http_info(fixed_rate_shipping_id, fixed_rate_shipping, **kwargs)
else:
(data) = cls._update_fixed_rate_shipping_by_id_with_http_info(fixed_rate_shipping_id, fixed_rate_shipping, **kwargs)
return data"
4771,"def create_wish_list(cls, wish_list, **kwargs):
""""""Create WishList
Create a new WishList
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.create_wish_list(wish_list, async=True)
>>> result = thread.get()
:param async bool
:param WishList wish_list: Attributes of wishList to create (required)
:return: WishList
If the method is called asynchronously,
returns the request thread.
""""""
kwargs['_return_http_data_only'] = True
if kwargs.get('async'):
return cls._create_wish_list_with_http_info(wish_list, **kwargs)
else:
(data) = cls._create_wish_list_with_http_info(wish_list, **kwargs)
return data"
4772,"def delete_wish_list_by_id(cls, wish_list_id, **kwargs):
""""""Delete WishList
Delete an instance of WishList by its ID.
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.delete_wish_list_by_id(wish_list_id, async=True)
>>> result = thread.get()
:param async bool
:param str wish_list_id: ID of wishList to delete. (required)
:return: None
If the method is called asynchronously,
returns the request thread.
""""""
kwargs['_return_http_data_only'] = True
if kwargs.get('async'):
return cls._delete_wish_list_by_id_with_http_info(wish_list_id, **kwargs)
else:
(data) = cls._delete_wish_list_by_id_with_http_info(wish_list_id, **kwargs)
return data"
4773,"def get_wish_list_by_id(cls, wish_list_id, **kwargs):
""""""Find WishList
Return single instance of WishList by its ID.
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async=True
>>> thread = api.get_wish_list_by_id(wish_list_id, async=True)
>>> result = thread.get()
:param async bool
:param str wish_list_id: ID of wishList to return (required)
:return: WishList
If the method is called asynchronously,
returns the request thread.
""""""