NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOfflineMarketShopAppl...

31 lines
881 B
C#
Raw 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOfflineMarketShopApplyorderCancelModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOfflineMarketShopApplyorderCancelModel : AopObject
{
/// <summary>
/// 撤销申请流水的原因
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// 操作人ID开店请求时候的操作人ID
/// </summary>
[XmlElement("op_id")]
public string OpId { get; set; }
/// <summary>
/// 要撤销的订单ID当店铺创建、修改接口迁移至2.0时同步返回的apply_id可以用作此接口的入参。
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
}
}