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

55 lines
600 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 TopReceiverDo
{
/**
* 收货人的详细地址信息
**/
public $address;
/**
* 收货人的城市
**/
public $city;
/**
* 区/县
**/
public $district;
/**
* 移动电话
**/
public $mobile_phone;
/**
* 收货人全名
**/
public $name;
/**
* 收件人ID (Open Addressee ID)长度在128个字符之内。
**/
public $oaid;
/**
* 固定电话
**/
public $phone;
/**
* 收货人所在省份
**/
public $state;
/**
* 邮政编码
**/
public $zip;
}
?>