using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayUserInviteAwardReceiveModel Data Structure. /// [Serializable] public class AlipayUserInviteAwardReceiveModel : AopObject { /// /// 用户扫码抽奖输入的手机号 /// [JsonProperty("mobile")] public string Mobile { get; set; } /// /// 外部业务方代码 /// [JsonProperty("out_biz_code")] public string OutBizCode { get; set; } /// /// 外部业务号 /// [JsonProperty("out_biz_no")] public string OutBizNo { get; set; } } }