Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ZolozIdentificationCustomerEnrollCancelModel.cs

25 lines
676 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System;
using System.Xml.Serialization;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ZolozIdentificationCustomerEnrollCancelModel Data Structure.
/// </summary>
[Serializable]
public class ZolozIdentificationCustomerEnrollCancelModel : AopObject
{
/// <summary>
/// 商户请求的唯一标志,该标识作为对账的关键信息,商户要保证其唯一性
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 商户的用户id
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}