NewGaoKaoApi/PaymentSDK/AliPay/Domain/OperatorQuery.cs

31 lines
969 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>
/// OperatorQuery Data Structure.
/// </summary>
[Serializable]
public class OperatorQuery : AopObject
{
/// <summary>
/// 查询操作员的唯一ID。类型由id_type决定
/// </summary>
[XmlElement("id")]
public string Id { get; set; }
/// <summary>
/// id参数的类型。取值如下 OPERATOR_ID=id填操作员ID USER_ID=id填支付宝登录userId LOGON_ID=id填操作员的登录号
/// </summary>
[XmlElement("id_type")]
public string IdType { get; set; }
/// <summary>
/// 操作员登录号类型。id_type为LOGON_ID时必填。 枚举值参考LogonIdTypeEnum 范围如下: 1=手机号 2=Email 3=企业操作员昵称方式
/// </summary>
[XmlElement("logon_id_type")]
public string LogonIdType { get; set; }
}
}