Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayUserUnicomCardInfoSyncModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

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