NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiAdvertCommissionRoleQ...

31 lines
1020 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>
/// KoubeiAdvertCommissionRoleQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiAdvertCommissionRoleQueryModel : AopObject
{
/// <summary>
/// 角色code码如果不提供该字段则会遍历所有角色并返回user_identify是否拥有 MISSION_PROMO任务推广角色 MISSION_PUBLISH任务发布角色
/// </summary>
[XmlElement("role_code")]
public string RoleCode { get; set; }
/// <summary>
/// 用户身份主键 user_identify_type=user_id -值必须是支付宝账户ID
/// </summary>
[XmlElement("user_identify")]
public string UserIdentify { get; set; }
/// <summary>
/// 用户身份主键类型 user_id - 支付宝账户ID
/// </summary>
[XmlElement("user_identify_type")]
public string UserIdentifyType { get; set; }
}
}