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.

32 lines
996 B
C#

9 months ago
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayOfflineMarketShopPublicUnbindResponse.
/// </summary>
public class AlipayOfflineMarketShopPublicUnbindResponse : AopResponse
{
/// <summary>
/// 绑定失败的店铺ID列表,绑定失败原因可能是a)检测到shop_id不存在;b)检测到shop_id不属于当前商户c该门店ID已经绑定服务窗
/// </summary>
[XmlArray("error_un_binding_shop_ids")]
[XmlArrayItem("string")]
public List<string> ErrorUnBindingShopIds { get; set; }
/// <summary>
/// 总的基础绑定错误数
/// </summary>
[XmlElement("total_error")]
public long TotalError { get; set; }
/// <summary>
/// 总的解除绑定成功数
/// </summary>
[XmlElement("total_success")]
public long TotalSuccess { get; set; }
}
}