using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// ZmAuthParams Data Structure. /// [Serializable] public class ZmAuthParams : AopObject { /// /// 商户在芝麻端申请的appId /// [JsonProperty("buckle_app_id")] public string BuckleAppId { get; set; } /// /// 商户在芝麻端申请的merchantId /// [JsonProperty("buckle_merchant_id")] public string BuckleMerchantId { get; set; } } }