using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayOpenPublicLifeModifyResponse. /// public class AlipayOpenPublicLifeModifyResponse : AopResponse { /// /// 修改时间。 /// [JsonProperty("modify_time")] public string ModifyTime { get; set; } /// /// 生活号id,用于表示此生活号唯一性 /// [JsonProperty("public_id")] public string PublicId { get; set; } } }