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

60 lines
893 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 ArticleSub
{
/**
* 应用收费代码从合作伙伴后台my.open.taobao.com-收费管理-收费项目列表 能够获得该应用的收费代码
**/
public $article_code;
/**
* 应用名称
**/
public $article_name;
/**
* 是否自动续费
**/
public $autosub;
/**
* 订购关系到期时间
**/
public $deadline;
/**
* 是否到期提醒
**/
public $expire_notice;
/**
* 收费项目代码从合作伙伴后台my.open.taobao.com-收费管理-收费项目列表 能够获得收费项目代码
**/
public $item_code;
/**
* 收费项目名称
**/
public $item_name;
/**
* 淘宝会员名
**/
public $nick;
/**
* 订购关系开始时间
**/
public $start_date;
/**
* 状态1=有效 2=过期
**/
public $status;
}
?>