gpt4 book ai didi

paypal - 如果 Paypal 计划有 “inactive” 状态?

转载 作者:太空宇宙 更新时间:2023-11-03 16:21:09 26 4
gpt4 key购买 nike

使用更新计划 API http://paypal.github.io/PayPal-PHP-SDK/sample/doc/billing/UpdatePlan.html我没有找到计划是否处于“非事件”状态以及我应该使用哪个 key ?我做了:

$value = new PayPalModel('{
"state":"INACTIVE"
}');

但出现错误:

Requested state change is invalid.

1) 有多有效?

2) 如果在我的开发者帐户中有一个页面,我可以在其中查看我的所有计划并在我的开发者帐户中使用它们?

谢谢!

最佳答案

代码取自: https://github.com/paypal/PayPal-PHP-SDK/blob/master/lib/PayPal/Api/BankAccount.php

BankAccount API 扩展了 PayPalModel 并在以下行中使用 $state:392

这是数组:

 /**
* State of this funding instrument.
* Valid Values: ["ACTIVE", "INACTIVE", "DELETED"]
*
* @param string $state
*
* @return $this
*/

public function setState($state)
{
$this->state = $state;
return $this;
}

从这里PayPal Rest API - Update Billing Plan Return URL回答您的计划似乎已经附加了协议(protocol),因此您不能将其设为非事件状态。

关于paypal - 如果 Paypal 计划有 “inactive” 状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57123919/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com