NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserMemberTakegcwtask...

37 lines
1004 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>
/// AlipayUserMemberTakegcwtaskCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserMemberTakegcwtaskCreateModel : AopObject
{
/// <summary>
/// 蚂蚁统一会员ID16位2088开头。
/// </summary>
[XmlElement("alipay_user_id")]
public string AlipayUserId { get; set; }
/// <summary>
/// 应用id固定值用于识别相关调用方的应用来源
/// </summary>
[XmlElement("application_id")]
public string ApplicationId { get; set; }
/// <summary>
/// 任务流水id唯一值用于双方幂等控制
/// </summary>
[XmlElement("flow_id")]
public string FlowId { get; set; }
/// <summary>
/// 任务id
/// </summary>
[XmlElement("task_id")]
public string TaskId { get; set; }
}
}