using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayOpenPublicPartnerMenuOperateModel Data Structure. /// [Serializable] public class AlipayOpenPublicPartnerMenuOperateModel : AopObject { /// /// 行为参数 /// [JsonProperty("action_param")] public string ActionParam { get; set; } /// /// 行为类型(in,out,api) /// [JsonProperty("action_type")] public string ActionType { get; set; } /// /// 协议号 /// [JsonProperty("agreement_id")] public string AgreementId { get; set; } /// /// 服务窗id /// [JsonProperty("public_id")] public string PublicId { get; set; } /// /// 第三方账号ID ,银行卡号/户号/手机号 /// [JsonProperty("third_account_id")] public string ThirdAccountId { get; set; } /// /// 支付宝用户id /// [JsonProperty("user_id")] public string UserId { get; set; } } }