using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayUserAccountBindingSyncModel Data Structure.
///
[Serializable]
public class AlipayUserAccountBindingSyncModel : AopObject
{
///
/// 支付宝用户ID
///
[XmlElement("alipay_user_id")]
public string AlipayUserId { get; set; }
///
/// 创建时间
///
[XmlElement("create_time")]
public string CreateTime { get; set; }
///
/// 版本号,大于等于0
///
[XmlElement("data_version")]
public long DataVersion { get; set; }
///
/// 淘系用户ID
///
[XmlElement("havana_user_id")]
public long HavanaUserId { get; set; }
///
/// 修改时间
///
[XmlElement("modify_time")]
public string ModifyTime { get; set; }
///
/// 淘宝绑定关系领域枚举: TAOBAO("0", "淘宝"), CBU("1", "1688(CBU)"), ALIYUN_LOGIN("2", "阿里云(免登)"), ALIYUN_CERTIFY("3", "阿里云(认证)")
///
[XmlElement("realm")]
public string Realm { get; set; }
///
/// 淘宝绑定关系状态枚举: UNBINDING("0", "未绑定"), BINDING("1", "已绑定")
///
[XmlElement("status")]
public string Status { get; set; }
}
}