/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Cpdp.V20190820.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class QueryOrderOutSubOrderList : AbstractModel
{
///
/// 子订单支付金额
///
[JsonProperty("Amt")]
public long? Amt{ get; set; }
///
/// 子订单结算应收金额,单位:分
///
[JsonProperty("SubMchIncome")]
public long? SubMchIncome{ get; set; }
///
/// 发货标识,由业务在调用Midas下单接口的时候下发。
///
[JsonProperty("Metadata")]
public string Metadata{ get; set; }
///
/// 子订单原始金额
///
[JsonProperty("OriginalAmt")]
public long? OriginalAmt{ get; set; }
///
/// 子订单平台应收金额,单位:分
///
[JsonProperty("PlatformIncome")]
public long? PlatformIncome{ get; set; }
///
/// 子订单商品详情
///
[JsonProperty("ProductDetail")]
public string ProductDetail{ get; set; }
///
/// 子订单商品名称
///
[JsonProperty("ProductName")]
public string ProductName{ get; set; }
///
/// 核销状态,1表示核销,0表示未核销
///
[JsonProperty("SettleCheck")]
public long? SettleCheck{ get; set; }
///
/// 聚鑫计费SubAppId,代表子商户
///
[JsonProperty("SubAppId")]
public string SubAppId{ get; set; }
///
/// 子订单号
///
[JsonProperty("SubOutTradeNo")]
public string SubOutTradeNo{ get; set; }
///
/// For internal usage only. DO NOT USE IT.
///
internal override void ToMap(Dictionary map, string prefix)
{
this.SetParamSimple(map, prefix + "Amt", this.Amt);
this.SetParamSimple(map, prefix + "SubMchIncome", this.SubMchIncome);
this.SetParamSimple(map, prefix + "Metadata", this.Metadata);
this.SetParamSimple(map, prefix + "OriginalAmt", this.OriginalAmt);
this.SetParamSimple(map, prefix + "PlatformIncome", this.PlatformIncome);
this.SetParamSimple(map, prefix + "ProductDetail", this.ProductDetail);
this.SetParamSimple(map, prefix + "ProductName", this.ProductName);
this.SetParamSimple(map, prefix + "SettleCheck", this.SettleCheck);
this.SetParamSimple(map, prefix + "SubAppId", this.SubAppId);
this.SetParamSimple(map, prefix + "SubOutTradeNo", this.SubOutTradeNo);
}
}
}