NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOfflineMarketShopQuer...

25 lines
706 B
C#
Raw Permalink 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>
/// AlipayOfflineMarketShopQuerydetailModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOfflineMarketShopQuerydetailModel : AopObject
{
/// <summary>
/// 服务商及商户调用情况下务必传递。操作人角色,默认商户操作:MERCHANT服务商操作PROVIDERISV: 不需要填写
/// </summary>
[XmlElement("op_role")]
public string OpRole { get; set; }
/// <summary>
/// 支付宝门店ID
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}