NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenAppCommunityPartn...

31 lines
755 B
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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenAppCommunityPartnerQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenAppCommunityPartnerQueryModel : AopObject
{
/// <summary>
/// 关系类型
/// </summary>
[XmlElement("rela_type")]
public string RelaType { get; set; }
/// <summary>
/// 源对象id
/// </summary>
[XmlElement("source_id")]
public string SourceId { get; set; }
/// <summary>
/// 对象类型id例如支付宝user_id
/// </summary>
[XmlElement("target_id")]
public string TargetId { get; set; }
}
}