REAPI/extend/sdk/taobao/top/domain/CardBuyRequest.php
2024-09-29 15:43:18 +08:00

55 lines
732 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 售卡请求对象(必填)
* @author auto create
*/
class CardBuyRequest
{
/**
* 购卡数量不能大于10000(必填)
**/
public $amount;
/**
* 充值账号openId选填
**/
public $buyer_open_uid;
/**
* 卡类型,必填(1: 猫超卡2:品类消费金)
**/
public $card_type;
/**
* 协同值对象(选填)
**/
public $collaboration;
/**
* 发票模板ID(选填)
**/
public $invoice_id;
/**
* 外部订单ID(必填)
**/
public $outer_order_id;
/**
* 面值,单位分(必填)
**/
public $par_value;
/**
* 充值账号(选填)
**/
public $recharge_account;
/**
* 卡单价,单位:分(选填)
**/
public $unit_price;
}
?>