NewGaoKaoApi/PaymentSDK/AliPay/Domain/PromoOperatorInfo.cs

25 lines
681 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>
/// PromoOperatorInfo Data Structure.
/// </summary>
[Serializable]
public class PromoOperatorInfo : AopObject
{
/// <summary>
/// 操作人id
/// </summary>
[XmlElement("operator_id")]
public string OperatorId { get; set; }
/// <summary>
/// 操作人类型。SALES口碑内部小二MER商户MER_OPERATOR商户员工PROVIDER服务商PROVIDER_STAFF服务商员工
/// </summary>
[XmlElement("operator_type")]
public string OperatorType { get; set; }
}
}