NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaCustomerFulfillmentSyn...

61 lines
1.9 KiB
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>
/// ZhimaCustomerFulfillmentSyncModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCustomerFulfillmentSyncModel : AopObject
{
/// <summary>
/// 扩展参数
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 业务发生时间
/// </summary>
[XmlElement("gmt_service")]
public string GmtService { get; set; }
/// <summary>
/// 芝麻信用service_id,由芝麻信用提供
/// </summary>
[XmlElement("service_id")]
public string ServiceId { get; set; }
/// <summary>
/// 标的变化值
/// </summary>
[XmlElement("subject_delta_num")]
public string SubjectDeltaNum { get; set; }
/// <summary>
/// 标的ID比如淘票票场景标识电影ID公益场景则标识某种类型公益判断约定内容是否完成均在此标的ID上做计算若不传则系统取默认配置值
/// </summary>
[XmlElement("subject_id")]
public string SubjectId { get; set; }
/// <summary>
/// 标的类型枚举TIMES(次数)/AMT(金额)
/// </summary>
[XmlElement("subject_type")]
public string SubjectType { get; set; }
/// <summary>
/// 外部订单号商户请求的唯一标志64位长度的字母数字下划线组合。该标识作为对账的关键信息商户要保证其唯一性
/// </summary>
[XmlElement("transaction_id")]
public string TransactionId { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}