using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayPointOrderAddResponse. /// public class AlipayPointOrderAddResponse : AopResponse { /// /// 支付宝集分宝发放流水号 /// [JsonProperty("alipay_order_no")] public string AlipayOrderNo { get; set; } /// /// 此参数已废弃。 /// [JsonProperty("result_code")] public bool ResultCode { get; set; } } }