using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMobilePublicAccountResetResponse. /// public class AlipayMobilePublicAccountResetResponse : AopResponse { /// /// 这是新账户绑定成功后产生的协议号 /// [JsonProperty("agreement_id")] public string AgreementId { get; set; } /// /// 结果码 /// [JsonProperty("code")] public string Code { get; set; } /// /// 结果信息 /// [JsonProperty("msg")] public string Msg { get; set; } } }