using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayUserUnicomCardInfoSyncModel Data Structure. /// [Serializable] public class AlipayUserUnicomCardInfoSyncModel : AopObject { /// /// 状态发生变更的时间,返回自January 1, 1970, 00:00:00 GMT至手机号状态变更发生时的毫秒数, java代码获取示例:new Date().getTime() /// [JsonProperty("gmt_status_change")] public string GmtStatusChange { get; set; } /// /// 状态发生变更的用户的联通手机号码(11位,不含国家码) /// [JsonProperty("phone_no")] public string PhoneNo { get; set; } /// /// 联通手机号码状态(激活: CARD_ACTIVE, 注销: CARD_CLOSE) /// [JsonProperty("phone_no_status")] public string PhoneNoStatus { get; set; } /// /// 支付宝用户ID /// [JsonProperty("user_id")] public string UserId { get; set; } } }