using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// PreOrderResult Data Structure.
///
[Serializable]
public class PreOrderResult : AopObject
{
///
/// 应用唯一标识
///
[JsonProperty("app_id")]
public string AppId { get; set; }
///
/// 商户订单号,64个字符以内、只能包含字母、数字、下划线;需保证在商户端不重复
///
[JsonProperty("out_trade_no")]
public string OutTradeNo { get; set; }
///
/// 错误描述
///
[JsonProperty("result_code")]
public string ResultCode { get; set; }
///
/// 校验是否成功
///
[JsonProperty("success")]
public bool Success { get; set; }
}
}