using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayUserUnicomMobileSyncModel Data Structure.
///
[Serializable]
public class AlipayUserUnicomMobileSyncModel : AopObject
{
///
/// 业务状态发生变更的时间戳,精确到毫秒
///
[XmlElement("gmt_status_change")]
public long GmtStatusChange { get; set; }
///
/// 联通老用户转宝卡套餐手机号,必须是联通手机号
///
[XmlElement("mobile")]
public string Mobile { get; set; }
///
/// 对手机号操作类型。CARD_ACTIVE:联通老用户转入宝卡套餐;CARD_CLOSE:宝卡用户转出宝卡套餐
///
[XmlElement("operation_type")]
public string OperationType { get; set; }
///
/// 比如某种业务标准外部订单号,比如交易外部订单号,代表商户端自己订单号
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 联通资费产品名称
///
[XmlElement("product_name")]
public string ProductName { get; set; }
}
}