NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiSalesLeadsSaleleadsCr...

51 lines
1.4 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>
/// KoubeiSalesLeadsSaleleadsCreateModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiSalesLeadsSaleleadsCreateModel : AopObject
{
/// <summary>
/// 销售Leads关联的业务主体id
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 销售业务主体类型SHOP_INFO已开店SHOP_LEADS未开店
/// </summary>
[XmlElement("biz_principle_type")]
public string BizPrincipleType { get; set; }
/// <summary>
/// 需要给销售Leads打上的标签Code数组
/// </summary>
[XmlArray("leads_tags")]
[XmlArrayItem("string")]
public List<string> LeadsTags { get; set; }
/// <summary>
/// 销售Leads类型
/// </summary>
[XmlElement("leads_type")]
public string LeadsType { get; set; }
/// <summary>
/// 备注
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// 调用方请求id业务请求相同时应保持一致用于幂等
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
}
}