NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOfflineMarketProductQ...

31 lines
900 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>
/// AlipayOfflineMarketProductQuerydetailModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOfflineMarketProductQuerydetailModel : AopObject
{
/// <summary>
/// 商品ID
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
/// <summary>
/// 操作人角色,默认商户操作:MERCHANT服务商操作PROVIDER。支付宝内部使用外部商户不需填写此字段。
/// </summary>
[XmlElement("op_role")]
public string OpRole { get; set; }
/// <summary>
/// 门店ID。支付宝内部使用外部商户不需填写此字段。
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}