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

60 lines
1010 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 WaybillApplyNewInfo
{
/**
* 包裹对应的派件(收件)物流服务商网点(分支机构)代码
**/
public $consignee_branch_code;
/**
* 包裹对应的派件(收件)物流服务商网点(分支机构)名称
**/
public $consignee_branch_name;
/**
* 集包地代码
**/
public $package_center_code;
/**
* 集包地名称
**/
public $package_center_name;
/**
* 打印配置项传给ali-print组件
**/
public $print_config;
/**
* 面单号对应的物流服务商网点(分支机构)代码
**/
public $shipping_branch_code;
/**
* 面单号对于的物流服务商网点(分支机构)名称
**/
public $shipping_branch_name;
/**
* 根据收货地址返回大头笔信息
**/
public $short_address;
/**
* 面单对应的订单列
**/
public $trade_order_info;
/**
* 返回的面单号
**/
public $waybill_code;
}
?>