NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenAppPropertyAuthSy...

27 lines
825 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>
/// AlipayOpenAppPropertyAuthSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenAppPropertyAuthSyncModel : AopObject
{
/// <summary>
/// 需要同步的小区认证信息,批量操作时,事务控制,一条数据失败,整个事务回滚。
/// </summary>
[XmlArray("auth_info")]
[XmlArrayItem("property_auth_info")]
public List<PropertyAuthInfo> AuthInfo { get; set; }
/// <summary>
/// 认证信息同步操作类型PUT(新增)、RESET(修改)、REMOVE(删除)。
/// </summary>
[XmlElement("operator")]
public string Operator { get; set; }
}
}