NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMerchantOperatorBatch...

27 lines
950 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiMerchantOperatorBatchDeleteModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMerchantOperatorBatchDeleteModel : AopObject
{
/// <summary>
/// 授权码
/// </summary>
[XmlElement("auth_code")]
public string AuthCode { get; set; }
/// <summary>
/// 要删除的操作员ID列表类型是List<String> 一次最多删除16个操作员 删除规则: 1. 传入的操作员ID对应的操作员必须都存在 2.传入的操作员ID对应的操作员必须是未激活状态即未激活的操作员才能被删除 3.管理员和权限复核员不能删除
/// </summary>
[XmlArray("operators")]
[XmlArrayItem("string")]
public List<string> Operators { get; set; }
}
}