NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandShopQueryM...

31 lines
1.2 KiB
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>
/// AntMerchantExpandShopQueryModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandShopQueryModel : AopObject
{
/// <summary>
/// 商户角色id表示将要开的店属于哪个商户角色。对于直连开店场景填写商户pid对于间连开店场景线上、线下、直付通填写商户smid。本接口中如果没传shop_id则本字段与store_id均必填
/// </summary>
[XmlElement("ip_role_id")]
public string IpRoleId { get; set; }
/// <summary>
/// 蚂蚁店铺id。填写本参数的话store_id和ip_role_id可以不填
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 门店编号表示该门店在该商户角色id(直连pid间连smid)下由商户自己定义的外部门店编号。关店接口中如果没传shop_id则本字段与ip_role_id均必填
/// </summary>
[XmlElement("store_id")]
public string StoreId { get; set; }
}
}