汇付SDK
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hfpay-lib/src/factory/object/trade/WithdrawCashResponse.php

33 lines
1.4 KiB

<?php
namespace Tansilu\HfPayLib\factory\object\trade;
use Tansilu\HfPayLib\factory\object\ResponseObj;
/**
* @property-read $resp_code 应答返回码
* @property-read $resp_desc 应答返回描述
* @property-read $mer_cust_id 商户客户号
* @property-read $user_cust_id 用户客户号(付款人汇付客户号)
* @property-read $order_date 订单日期
* @property-read $order_id 订单号
* @property-read $platform_seq_id 本平台交易唯一标识号
* @property-read $trans_amt 交易金额
* @property-read $real_trans_amt 实际到账金额(取现失败则不传)
* @property-read $bind_card_id 取现绑卡ID
* @property-read $out_acct_id 出账账户号
* @property-read $bank_id 开户银行代号
* @property-read $fee_amt 手续费金额
* @property-read $fee_cust_id 手续费扣款客户号
* @property-read $fee_acct_id 手续费扣款子账户号
* @property-read $serv_amt 服务费
* @property-read $serv_cust_id 服务费收取方客户号
* @property-read $serv_acct_id 服务费账户号
* @property-read $bg_ret_url 商户后台应答地址
* @property-read $mer_priv 商户私有域
* @property-read $extension 扩展域
*/
class WithdrawCashResponse
{
use ResponseObj;
}