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.

54 lines
2.0 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>
/// AlipayOfflineMarketShopCreateResponse.
/// </summary>
public class AlipayOfflineMarketShopCreateResponse : 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; }
/// <summary>
/// 开店请求结果码: WAIT_MERCHANT_CONFIRM等待商户确认 当开店需要商户确认时返回此结果码商户需要登录到商家中心e.alipay.com进行开店确认。例如ISV帮商户开店时出现需要改签口碑当面付主体接口同步返回此错误码并且支付宝发送短信告知商户登录商家中心进行改签确认确认后进入到后续审核流程。
/// </summary>
[XmlElement("result_code")]
public string ResultCode { get; set; }
/// <summary>
/// 废弃字段支付宝门店ID。
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}