/* * 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.Partners.V20180321.Models { using Newtonsoft.Json; using System.Collections.Generic; using TencentCloud.Common; public class AgentBillElem : AbstractModel { /// /// 代理商账号ID /// [JsonProperty("Uin")] public string Uin{ get; set; } /// /// 订单号,仅对预付费账单有意义 /// [JsonProperty("OrderId")] public string OrderId{ get; set; } /// /// 代客账号ID /// [JsonProperty("ClientUin")] public string ClientUin{ get; set; } /// /// 代客备注名称 /// [JsonProperty("ClientRemark")] public string ClientRemark{ get; set; } /// /// 支付时间 /// [JsonProperty("PayTime")] public string PayTime{ get; set; } /// /// 云产品名称 /// [JsonProperty("GoodsType")] public string GoodsType{ get; set; } /// /// 预付费/后付费 /// [JsonProperty("PayMode")] public string PayMode{ get; set; } /// /// 支付月份 /// [JsonProperty("SettleMonth")] public string SettleMonth{ get; set; } /// /// 支付金额,单位分 /// [JsonProperty("Amt")] public long? Amt{ get; set; } /// /// agentpay:代付;selfpay:自付 /// [JsonProperty("PayerMode")] public string PayerMode{ get; set; } /// /// 客户类型:可以为new(新拓)/assign(指定)/old(存量)/空 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("ClientType")] public string ClientType{ get; set; } /// /// 项目类型:可以为self(自拓项目)/platform(合作项目)/repeat(复算项目 )/空 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("ProjectType")] public string ProjectType{ get; set; } /// /// 活动ID /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("ActivityId")] public string ActivityId{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "Uin", this.Uin); this.SetParamSimple(map, prefix + "OrderId", this.OrderId); this.SetParamSimple(map, prefix + "ClientUin", this.ClientUin); this.SetParamSimple(map, prefix + "ClientRemark", this.ClientRemark); this.SetParamSimple(map, prefix + "PayTime", this.PayTime); this.SetParamSimple(map, prefix + "GoodsType", this.GoodsType); this.SetParamSimple(map, prefix + "PayMode", this.PayMode); this.SetParamSimple(map, prefix + "SettleMonth", this.SettleMonth); this.SetParamSimple(map, prefix + "Amt", this.Amt); this.SetParamSimple(map, prefix + "PayerMode", this.PayerMode); this.SetParamSimple(map, prefix + "ClientType", this.ClientType); this.SetParamSimple(map, prefix + "ProjectType", this.ProjectType); this.SetParamSimple(map, prefix + "ActivityId", this.ActivityId); } } }