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

35 lines
539 B
PHP
Raw 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 CardBindReqDTO
{
/**
* 被绑定用户的openUid仅支持单个用户与card_bind_user_nick必填一个
**/
public $buyer_open_uid;
/**
* 被绑定用户的淘宝nick仅支持单个用户
**/
public $card_bind_user_nick;
/**
* 被绑定卡号,支持多个卡号,用英文“,”隔开
**/
public $card_no_s;
/**
* 购卡流水号
**/
public $out_biz_id;
/**
* top平台分配的appKey
**/
public $top_app_key;
}
?>