using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOfflineMarketProductQuerydetailModel Data Structure.
///
[Serializable]
public class AlipayOfflineMarketProductQuerydetailModel : AopObject
{
///
/// 商品ID
///
[XmlElement("item_id")]
public string ItemId { get; set; }
///
/// 操作人角色,默认商户操作:MERCHANT;服务商操作:PROVIDER。支付宝内部使用,外部商户不需填写此字段。
///
[XmlElement("op_role")]
public string OpRole { get; set; }
///
/// 门店ID。支付宝内部使用,外部商户不需填写此字段。
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}