NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataDataserviceProper...

52 lines
1.4 KiB
C#
Raw 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>
/// AlipayDataDataservicePropertyBusinesspropertyBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataDataservicePropertyBusinesspropertyBatchqueryModel : AopObject
{
/// <summary>
/// 业务画像id
/// </summary>
[XmlElement("business_profile_id")]
public string BusinessProfileId { get; set; }
/// <summary>
/// 业务画像标签id列表逗号分隔
/// </summary>
[XmlArray("business_property_ids")]
[XmlArrayItem("string")]
public List<string> BusinessPropertyIds { get; set; }
/// <summary>
/// 业务画像标签对应的columnGuid
/// </summary>
[XmlElement("column_guid")]
public string ColumnGuid { get; set; }
/// <summary>
/// 标签名称
/// </summary>
[XmlElement("property_name")]
public string PropertyName { get; set; }
/// <summary>
/// 标签状态,逗号分隔
/// </summary>
[XmlArray("status")]
[XmlArrayItem("string")]
public List<string> Status { get; set; }
/// <summary>
/// 业务画像标签对应的tableGuid
/// </summary>
[XmlElement("table_guid")]
public string TableGuid { get; set; }
}
}