options->set('method', 'alipay.fund.trans.toaccount.transfer'); return $this->getResult($options); } /** * 新版 向指定支付宝账户转账 * @param array $options * @return array|bool * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function create($options = []) { $this->options->set('method', 'alipay.fund.trans.uni.transfer'); return $this->getResult($options); } /** * 新版 转账业务单据查询接口 * @param array $options * @return array|bool * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function queryResult($options = []) { $this->options->set('method', 'alipay.fund.trans.common.query'); return $this->getResult($options); } /** * 新版 支付宝资金账户资产查询接口 * @param array $options * @return array|bool * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function queryAccount($options = []) { $this->options->set('method', 'alipay.fund.account.query'); return $this->getResult($options); } }