NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialBaseIdpsourceSy...

25 lines
763 B
C#
Raw Permalink 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>
/// AlipaySocialBaseIdpsourceSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialBaseIdpsourceSyncModel : AopObject
{
/// <summary>
/// 数据内容为json格式的字符串要求数据内容所有字段平铺不支持复杂数据结构时间类型请统一使用unix毫秒时间戳。
/// </summary>
[XmlElement("data")]
public string Data { get; set; }
/// <summary>
/// 能唯一标识一份外部数据的名称,确定后不可变更,不可重复
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
}
}