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.

42 lines
1.3 KiB
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>
/// AlipayOfflineMarketShopModifyResponse.
/// </summary>
public class AlipayOfflineMarketShopModifyResponse : AopResponse
{
/// <summary>
/// 修改门店请求受理成功后返回的支付宝流水ID根据此ID调用接口 alipay.offline.market.applyorder.batchquery能够获取当前修改店铺请求审核状态、驳回原因等信息。
/// </summary>
[XmlElement("apply_id")]
public string ApplyId { get; set; }
/// <summary>
/// 废弃字段。
/// </summary>
[XmlElement("audit_desc")]
public string AuditDesc { get; set; }
/// <summary>
/// 同步请求如果支付宝受理成功将返回AUDITING状态。
/// </summary>
[XmlElement("audit_status")]
public string AuditStatus { get; set; }
/// <summary>
/// 废弃字段T表示上架,F表示未上架。
/// </summary>
[XmlElement("is_online")]
public string IsOnline { get; set; }
/// <summary>
/// 废弃字段T表示显示F表示隐藏。
/// </summary>
[XmlElement("is_show")]
public string IsShow { get; set; }
}
}