NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialBaseRelationCom...

25 lines
691 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>
/// AlipaySocialBaseRelationCombinedQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialBaseRelationCombinedQueryModel : AopObject
{
/// <summary>
/// 最大需要返回的列表值
/// </summary>
[XmlElement("limit")]
public long Limit { get; set; }
/// <summary>
/// 关系查询的业务类型编号此类型由mobilerelation分配不同的类型对应不同的结果集
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
}
}