NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaCustomerBehaviorSyncMo...

63 lines
1.8 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// ZhimaCustomerBehaviorSyncModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCustomerBehaviorSyncModel : AopObject
{
/// <summary>
/// 反馈行为
/// </summary>
[XmlArray("behavior")]
[XmlArrayItem("string")]
public List<string> Behavior { get; set; }
/// <summary>
/// 行为所携带的内容,fulfillment:{"subjectDeltaNum":"1","subjectType":"subject"}
/// </summary>
[XmlElement("behavior_content")]
public string BehaviorContent { get; set; }
/// <summary>
/// 业务发生时间
/// </summary>
[XmlElement("gmt_service")]
public string GmtService { get; set; }
/// <summary>
/// 主体类型B或者C
/// </summary>
[XmlElement("principal_type")]
public string PrincipalType { get; set; }
/// <summary>
/// 芝麻信用service_id,由芝麻信用提供
/// </summary>
[XmlElement("service_id")]
public string ServiceId { get; set; }
/// <summary>
/// 芝麻信用service_id,由芝麻信用提供
/// </summary>
[XmlElement("subject_id")]
public string SubjectId { get; set; }
/// <summary>
/// 外部订单号商户请求的唯一标志64位长度的字母数字下划线组合。该标识作为对账的关键信息商户要保证其唯一性
/// </summary>
[XmlElement("transaction_id")]
public string TransactionId { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}