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

60 lines
717 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 ReceiverInfo
{
/**
* 区域, string (50)
**/
public $area;
/**
* 城市, string (50) , 必填
**/
public $city;
/**
* 国家二字码string50
**/
public $country_code;
/**
* 详细地址, string (200) , 必填
**/
public $detail_address;
/**
* 移动电话, string (50) , 必填
**/
public $mobile;
/**
* 姓名, string (50) , 必填
**/
public $name;
/**
* 省份, string (50) , 必填
**/
public $province;
/**
* 固定电话, string (50)
**/
public $tel;
/**
* 村镇, string (50)
**/
public $town;
/**
* 邮编, string (50)
**/
public $zip_code;
}
?>