NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserUnicomCardInfoSyn...

37 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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