NewGaoKaoApi/PaymentSDK/AliPay/Domain/PortfolioOperatorInfo.cs

25 lines
935 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>
/// PortfolioOperatorInfo Data Structure.
/// </summary>
[Serializable]
public class PortfolioOperatorInfo : AopObject
{
/// <summary>
/// 服务商、服务商员工、商户、商户员工等口碑角色操作时必填,对应为 koubei.member.data.oauth.query 中的auth_code默认有效期24小时ISV自身角色操作的时候无需传该参数
/// </summary>
[XmlElement("auth_code")]
public string AuthCode { get; set; }
/// <summary>
/// 如果是 ISV 代操作,请传入 ISV 如果是其他角色商户MER、商户操作员MER_OPERATOR、服务商PROVIDER、服务商员工PROVIDER_STAFF、系统SYSTEM操作不用填写。
/// </summary>
[XmlElement("op_role")]
public string OpRole { get; set; }
}
}