本文整理汇总了Python中client.Zuora.update_product_amendment2方法的典型用法代码示例。如果您正苦于以下问题:Python Zuora.update_product_amendment2方法的具体用法?Python Zuora.update_product_amendment2怎么用?Python Zuora.update_product_amendment2使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类client.Zuora
的用法示例。
在下文中一共展示了Zuora.update_product_amendment2方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_update_product_ammendment2_amend_called
# 需要导入模块: from client import Zuora [as 别名]
# 或者: from client.Zuora import update_product_amendment2 [as 别名]
def test_update_product_ammendment2_amend_called(self):
quantity = 10
now = datetime.datetime.now()
z = Zuora(self.zuora_settings)
z.client = mock.Mock()
z.amend = mock.Mock()
response = mock.Mock()
response.Success = True
z.amend.return_value = [response]
z.update_product_amendment2(
name=now.strftime('AMEND-%Y-%m'),
description='Changing quantity to %s items' % (quantity),
quantity=quantity,
contract_effective_datetime=now,
effective_datetime=now,
service_activation_datetime=now,
customer_acceptance_datetime=now,
subscription_id=mock.Mock(),
rate_plan_id=mock.Mock(),
product_rate_plan_charge_id=mock.Mock())
assert z.amend.call_count == 1