using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InsMerchant Data Structure. /// [Serializable] public class InsMerchant : AopObject { /// /// 机构全称 /// [JsonProperty("name")] public string Name { get; set; } /// /// 服务电话 /// [JsonProperty("service_phone")] public string ServicePhone { get; set; } /// /// 机构简称 /// [JsonProperty("short_name")] public string ShortName { get; set; } } }