using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Essensoft.AspNetCore.Payment.Alipay.Domain { /// /// AlipaySocialBaseQuestInstancesQueryModel Data Structure. /// [Serializable] public class AlipaySocialBaseQuestInstancesQueryModel : AlipayObject { /// /// 目标ID列表,列表长度不能超过20 /// [JsonProperty("quest_ids")] public List QuestIds { get; set; } /// /// 调用方标识 /// [JsonProperty("source_id")] public string SourceId { get; set; } /// /// 蚂蚁统一会员ID /// [JsonProperty("user_id")] public string UserId { get; set; } } }