You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
994 B
C#

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.Response
{
/// <summary>
/// KoubeiMemberDataOauthQueryResponse.
/// </summary>
public class KoubeiMemberDataOauthQueryResponse : AopResponse
{
/// <summary>
/// 扩展信息, 目前保留未用
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 操作人id
/// </summary>
[XmlElement("operator_id")]
public string OperatorId { get; set; }
/// <summary>
/// 商户id
/// </summary>
[XmlElement("operator_partner_id")]
public string OperatorPartnerId { get; set; }
/// <summary>
/// 操作人身份PROVIDER:服务商,PROVIDER_STAFF:服务商员工,MER:商户,MER_STAFF:商户员工,SALES:阿里销售小二
/// </summary>
[XmlElement("operator_type")]
public string OperatorType { get; set; }
}
}