NewGaoKaoApi/PaymentSDK/AliPay/Domain/ArrangementInvolvedPartyQue...

31 lines
804 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>
/// ArrangementInvolvedPartyQuerier Data Structure.
/// </summary>
[Serializable]
public class ArrangementInvolvedPartyQuerier : AopObject
{
/// <summary>
/// 参与者id
/// </summary>
[XmlElement("ip_id")]
public string IpId { get; set; }
/// <summary>
/// 用户uid/参与者角色id
/// </summary>
[XmlElement("ip_role_id")]
public string IpRoleId { get; set; }
/// <summary>
/// 参与者角色类型,为空时表示所有类型都查询. 可选值01 甲方 11 乙方 21丙方
/// </summary>
[XmlElement("ip_type")]
public string IpType { get; set; }
}
}