37 lines
1009 B
C#
37 lines
1009 B
C#
|
|
using System;
|
||
|
|
using System.Xml.Serialization;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// ZolozIdentificationUserWebInitializeModel Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class ZolozIdentificationUserWebInitializeModel : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 商户请求的唯一标识,该标识作为对账的关键信息,商户要保证其唯一性
|
||
|
|
/// </summary>
|
||
|
|
[XmlElement("biz_id")]
|
||
|
|
public string BizId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 预留扩展业务参数
|
||
|
|
/// </summary>
|
||
|
|
[XmlElement("extern_param")]
|
||
|
|
public string ExternParam { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 用户身份信息
|
||
|
|
/// </summary>
|
||
|
|
[XmlElement("identity_param")]
|
||
|
|
public IdentityParam IdentityParam { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 环境参数
|
||
|
|
/// </summary>
|
||
|
|
[XmlElement("metainfo")]
|
||
|
|
public string Metainfo { get; set; }
|
||
|
|
}
|
||
|
|
}
|