You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
503 B
21 lines
503 B
2 years ago
|
namespace SDKAdapter.PurchasePlatform.Models
|
||
|
{
|
||
|
public class PP_CreateOrderResponse : PP_PreviewOrderResponse
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 订单Id
|
||
|
/// </summary>
|
||
|
public string OrderId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 是否支付
|
||
|
/// </summary>
|
||
|
public bool IsPay { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 下单失败的商品信息
|
||
|
/// </summary>
|
||
|
public IList<string> FailProductMessageList { get; set; }
|
||
|
}
|
||
|
}
|