using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayPlatformUseridGetModel Data Structure. /// [Serializable] public class AlipayPlatformUseridGetModel : AopObject { /// /// openId的列表 /// [JsonProperty("open_ids")] public List OpenIds { get; set; } } }