tencentcloud-sdk-cpdp 1.0.324 → 1.0.327
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190820/client.rb +336 -0
- data/lib/v20190820/models.rb +1854 -243
- metadata +2 -2
data/lib/v20190820/models.rb
CHANGED
@@ -806,6 +806,23 @@ module TencentCloud
|
|
806
806
|
end
|
807
807
|
end
|
808
808
|
|
809
|
+
# 税前金额结果
|
810
|
+
class AmountBeforeTaxResult < TencentCloud::Common::AbstractModel
|
811
|
+
# @param AmountBeforeTax: 税前金额
|
812
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
813
|
+
# @type AmountBeforeTax: String
|
814
|
+
|
815
|
+
attr_accessor :AmountBeforeTax
|
816
|
+
|
817
|
+
def initialize(amountbeforetax=nil)
|
818
|
+
@AmountBeforeTax = amountbeforetax
|
819
|
+
end
|
820
|
+
|
821
|
+
def deserialize(params)
|
822
|
+
@AmountBeforeTax = params['AmountBeforeTax']
|
823
|
+
end
|
824
|
+
end
|
825
|
+
|
809
826
|
# 主播签约信息
|
810
827
|
class AnchorContractInfo < TencentCloud::Common::AbstractModel
|
811
828
|
# @param AnchorId: 主播ID
|
@@ -999,6 +1016,201 @@ module TencentCloud
|
|
999
1016
|
end
|
1000
1017
|
end
|
1001
1018
|
|
1019
|
+
# ApplyFlexPayment请求参数结构体
|
1020
|
+
class ApplyFlexPaymentRequest < TencentCloud::Common::AbstractModel
|
1021
|
+
# @param PayeeId: 收款用户ID
|
1022
|
+
# @type PayeeId: String
|
1023
|
+
# @param IncomeType: 收入类型
|
1024
|
+
# LABOR:劳务所得
|
1025
|
+
# OCCASION:偶然所得
|
1026
|
+
# @type IncomeType: String
|
1027
|
+
# @param AmountBeforeTax: 税前金额
|
1028
|
+
# @type AmountBeforeTax: String
|
1029
|
+
# @param OutOrderId: 外部订单ID
|
1030
|
+
# @type OutOrderId: String
|
1031
|
+
# @param FundingAccountInfo: 资金账户信息
|
1032
|
+
# @type FundingAccountInfo: :class:`Tencentcloud::Cpdp.v20190820.models.FlexFundingAccountInfo`
|
1033
|
+
# @param Remark: 提现备注
|
1034
|
+
# @type Remark: String
|
1035
|
+
|
1036
|
+
attr_accessor :PayeeId, :IncomeType, :AmountBeforeTax, :OutOrderId, :FundingAccountInfo, :Remark
|
1037
|
+
|
1038
|
+
def initialize(payeeid=nil, incometype=nil, amountbeforetax=nil, outorderid=nil, fundingaccountinfo=nil, remark=nil)
|
1039
|
+
@PayeeId = payeeid
|
1040
|
+
@IncomeType = incometype
|
1041
|
+
@AmountBeforeTax = amountbeforetax
|
1042
|
+
@OutOrderId = outorderid
|
1043
|
+
@FundingAccountInfo = fundingaccountinfo
|
1044
|
+
@Remark = remark
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
def deserialize(params)
|
1048
|
+
@PayeeId = params['PayeeId']
|
1049
|
+
@IncomeType = params['IncomeType']
|
1050
|
+
@AmountBeforeTax = params['AmountBeforeTax']
|
1051
|
+
@OutOrderId = params['OutOrderId']
|
1052
|
+
unless params['FundingAccountInfo'].nil?
|
1053
|
+
@FundingAccountInfo = FlexFundingAccountInfo.new
|
1054
|
+
@FundingAccountInfo.deserialize(params['FundingAccountInfo'])
|
1055
|
+
end
|
1056
|
+
@Remark = params['Remark']
|
1057
|
+
end
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
# ApplyFlexPayment返回参数结构体
|
1061
|
+
class ApplyFlexPaymentResponse < TencentCloud::Common::AbstractModel
|
1062
|
+
# @param ErrCode: 错误码。SUCCESS为成功,其他为失败
|
1063
|
+
# @type ErrCode: String
|
1064
|
+
# @param ErrMessage: 错误消息
|
1065
|
+
# @type ErrMessage: String
|
1066
|
+
# @param Result: 返回结果
|
1067
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1068
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.ApplyFlexPaymentResult`
|
1069
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1070
|
+
# @type RequestId: String
|
1071
|
+
|
1072
|
+
attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
|
1073
|
+
|
1074
|
+
def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
|
1075
|
+
@ErrCode = errcode
|
1076
|
+
@ErrMessage = errmessage
|
1077
|
+
@Result = result
|
1078
|
+
@RequestId = requestid
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
def deserialize(params)
|
1082
|
+
@ErrCode = params['ErrCode']
|
1083
|
+
@ErrMessage = params['ErrMessage']
|
1084
|
+
unless params['Result'].nil?
|
1085
|
+
@Result = ApplyFlexPaymentResult.new
|
1086
|
+
@Result.deserialize(params['Result'])
|
1087
|
+
end
|
1088
|
+
@RequestId = params['RequestId']
|
1089
|
+
end
|
1090
|
+
end
|
1091
|
+
|
1092
|
+
# 付款结果
|
1093
|
+
class ApplyFlexPaymentResult < TencentCloud::Common::AbstractModel
|
1094
|
+
# @param OrderId: 订单ID
|
1095
|
+
# @type OrderId: String
|
1096
|
+
# @param AmountBeforeTax: 税前金额
|
1097
|
+
# @type AmountBeforeTax: String
|
1098
|
+
# @param AmountAfterTax: 税后金额
|
1099
|
+
# @type AmountAfterTax: String
|
1100
|
+
# @param Tax: 税金
|
1101
|
+
# @type Tax: String
|
1102
|
+
|
1103
|
+
attr_accessor :OrderId, :AmountBeforeTax, :AmountAfterTax, :Tax
|
1104
|
+
|
1105
|
+
def initialize(orderid=nil, amountbeforetax=nil, amountaftertax=nil, tax=nil)
|
1106
|
+
@OrderId = orderid
|
1107
|
+
@AmountBeforeTax = amountbeforetax
|
1108
|
+
@AmountAfterTax = amountaftertax
|
1109
|
+
@Tax = tax
|
1110
|
+
end
|
1111
|
+
|
1112
|
+
def deserialize(params)
|
1113
|
+
@OrderId = params['OrderId']
|
1114
|
+
@AmountBeforeTax = params['AmountBeforeTax']
|
1115
|
+
@AmountAfterTax = params['AmountAfterTax']
|
1116
|
+
@Tax = params['Tax']
|
1117
|
+
end
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
# ApplyFlexSettlement请求参数结构体
|
1121
|
+
class ApplyFlexSettlementRequest < TencentCloud::Common::AbstractModel
|
1122
|
+
# @param PayeeId: 收款用户ID
|
1123
|
+
# @type PayeeId: String
|
1124
|
+
# @param IncomeType: 收入类型
|
1125
|
+
# LABOR:劳务所得
|
1126
|
+
# OCCASION:偶然所得
|
1127
|
+
# @type IncomeType: String
|
1128
|
+
# @param AmountBeforeTax: 税前金额
|
1129
|
+
# @type AmountBeforeTax: String
|
1130
|
+
# @param OutOrderId: 外部订单ID
|
1131
|
+
# @type OutOrderId: String
|
1132
|
+
# @param Remark: 备注
|
1133
|
+
# @type Remark: String
|
1134
|
+
|
1135
|
+
attr_accessor :PayeeId, :IncomeType, :AmountBeforeTax, :OutOrderId, :Remark
|
1136
|
+
|
1137
|
+
def initialize(payeeid=nil, incometype=nil, amountbeforetax=nil, outorderid=nil, remark=nil)
|
1138
|
+
@PayeeId = payeeid
|
1139
|
+
@IncomeType = incometype
|
1140
|
+
@AmountBeforeTax = amountbeforetax
|
1141
|
+
@OutOrderId = outorderid
|
1142
|
+
@Remark = remark
|
1143
|
+
end
|
1144
|
+
|
1145
|
+
def deserialize(params)
|
1146
|
+
@PayeeId = params['PayeeId']
|
1147
|
+
@IncomeType = params['IncomeType']
|
1148
|
+
@AmountBeforeTax = params['AmountBeforeTax']
|
1149
|
+
@OutOrderId = params['OutOrderId']
|
1150
|
+
@Remark = params['Remark']
|
1151
|
+
end
|
1152
|
+
end
|
1153
|
+
|
1154
|
+
# ApplyFlexSettlement返回参数结构体
|
1155
|
+
class ApplyFlexSettlementResponse < TencentCloud::Common::AbstractModel
|
1156
|
+
# @param ErrCode: 错误码。SUCCESS为成功,其他为失败
|
1157
|
+
# @type ErrCode: String
|
1158
|
+
# @param ErrMessage: 错误消息
|
1159
|
+
# @type ErrMessage: String
|
1160
|
+
# @param Result: 返回结果
|
1161
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1162
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.ApplyFlexSettlementResult`
|
1163
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1164
|
+
# @type RequestId: String
|
1165
|
+
|
1166
|
+
attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
|
1167
|
+
|
1168
|
+
def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
|
1169
|
+
@ErrCode = errcode
|
1170
|
+
@ErrMessage = errmessage
|
1171
|
+
@Result = result
|
1172
|
+
@RequestId = requestid
|
1173
|
+
end
|
1174
|
+
|
1175
|
+
def deserialize(params)
|
1176
|
+
@ErrCode = params['ErrCode']
|
1177
|
+
@ErrMessage = params['ErrMessage']
|
1178
|
+
unless params['Result'].nil?
|
1179
|
+
@Result = ApplyFlexSettlementResult.new
|
1180
|
+
@Result.deserialize(params['Result'])
|
1181
|
+
end
|
1182
|
+
@RequestId = params['RequestId']
|
1183
|
+
end
|
1184
|
+
end
|
1185
|
+
|
1186
|
+
# 结算结果
|
1187
|
+
class ApplyFlexSettlementResult < TencentCloud::Common::AbstractModel
|
1188
|
+
# @param OrderId: 订单ID
|
1189
|
+
# @type OrderId: String
|
1190
|
+
# @param AmountBeforeTax: 税前金额
|
1191
|
+
# @type AmountBeforeTax: String
|
1192
|
+
# @param AmountAfterTax: 税后金额
|
1193
|
+
# @type AmountAfterTax: String
|
1194
|
+
# @param Tax: 税金
|
1195
|
+
# @type Tax: String
|
1196
|
+
|
1197
|
+
attr_accessor :OrderId, :AmountBeforeTax, :AmountAfterTax, :Tax
|
1198
|
+
|
1199
|
+
def initialize(orderid=nil, amountbeforetax=nil, amountaftertax=nil, tax=nil)
|
1200
|
+
@OrderId = orderid
|
1201
|
+
@AmountBeforeTax = amountbeforetax
|
1202
|
+
@AmountAfterTax = amountaftertax
|
1203
|
+
@Tax = tax
|
1204
|
+
end
|
1205
|
+
|
1206
|
+
def deserialize(params)
|
1207
|
+
@OrderId = params['OrderId']
|
1208
|
+
@AmountBeforeTax = params['AmountBeforeTax']
|
1209
|
+
@AmountAfterTax = params['AmountAfterTax']
|
1210
|
+
@Tax = params['Tax']
|
1211
|
+
end
|
1212
|
+
end
|
1213
|
+
|
1002
1214
|
# ApplyOpenBankOrderDetailReceipt请求参数结构体
|
1003
1215
|
class ApplyOpenBankOrderDetailReceiptRequest < TencentCloud::Common::AbstractModel
|
1004
1216
|
# @param OutApplyId: 外部回单申请编号
|
@@ -4973,6 +5185,103 @@ module TencentCloud
|
|
4973
5185
|
end
|
4974
5186
|
end
|
4975
5187
|
|
5188
|
+
# CreateFlexPayee请求参数结构体
|
5189
|
+
class CreateFlexPayeeRequest < TencentCloud::Common::AbstractModel
|
5190
|
+
# @param OutUserId: 用户外部业务ID
|
5191
|
+
# @type OutUserId: String
|
5192
|
+
# @param Name: 姓名
|
5193
|
+
# @type Name: String
|
5194
|
+
# @param IdNo: 证件号
|
5195
|
+
# @type IdNo: String
|
5196
|
+
# @param AccountName: 账户名称
|
5197
|
+
# @type AccountName: String
|
5198
|
+
# @param ServiceProviderId: 服务商ID
|
5199
|
+
# @type ServiceProviderId: String
|
5200
|
+
# @param TaxInfo: 计税信息
|
5201
|
+
# @type TaxInfo: :class:`Tencentcloud::Cpdp.v20190820.models.PayeeTaxInfo`
|
5202
|
+
# @param IdType: 证件类型
|
5203
|
+
# 0:身份证
|
5204
|
+
# 1:社会信用代码
|
5205
|
+
# @type IdType: Integer
|
5206
|
+
# @param Remark: 备注
|
5207
|
+
# @type Remark: String
|
5208
|
+
|
5209
|
+
attr_accessor :OutUserId, :Name, :IdNo, :AccountName, :ServiceProviderId, :TaxInfo, :IdType, :Remark
|
5210
|
+
|
5211
|
+
def initialize(outuserid=nil, name=nil, idno=nil, accountname=nil, serviceproviderid=nil, taxinfo=nil, idtype=nil, remark=nil)
|
5212
|
+
@OutUserId = outuserid
|
5213
|
+
@Name = name
|
5214
|
+
@IdNo = idno
|
5215
|
+
@AccountName = accountname
|
5216
|
+
@ServiceProviderId = serviceproviderid
|
5217
|
+
@TaxInfo = taxinfo
|
5218
|
+
@IdType = idtype
|
5219
|
+
@Remark = remark
|
5220
|
+
end
|
5221
|
+
|
5222
|
+
def deserialize(params)
|
5223
|
+
@OutUserId = params['OutUserId']
|
5224
|
+
@Name = params['Name']
|
5225
|
+
@IdNo = params['IdNo']
|
5226
|
+
@AccountName = params['AccountName']
|
5227
|
+
@ServiceProviderId = params['ServiceProviderId']
|
5228
|
+
unless params['TaxInfo'].nil?
|
5229
|
+
@TaxInfo = PayeeTaxInfo.new
|
5230
|
+
@TaxInfo.deserialize(params['TaxInfo'])
|
5231
|
+
end
|
5232
|
+
@IdType = params['IdType']
|
5233
|
+
@Remark = params['Remark']
|
5234
|
+
end
|
5235
|
+
end
|
5236
|
+
|
5237
|
+
# CreateFlexPayee返回参数结构体
|
5238
|
+
class CreateFlexPayeeResponse < TencentCloud::Common::AbstractModel
|
5239
|
+
# @param ErrCode: 错误码。SUCCESS为成功,其他为失败
|
5240
|
+
# @type ErrCode: String
|
5241
|
+
# @param ErrMessage: 错误消息
|
5242
|
+
# @type ErrMessage: String
|
5243
|
+
# @param Result: 返回结果
|
5244
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5245
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.CreateFlexPayeeResult`
|
5246
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
5247
|
+
# @type RequestId: String
|
5248
|
+
|
5249
|
+
attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
|
5250
|
+
|
5251
|
+
def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
|
5252
|
+
@ErrCode = errcode
|
5253
|
+
@ErrMessage = errmessage
|
5254
|
+
@Result = result
|
5255
|
+
@RequestId = requestid
|
5256
|
+
end
|
5257
|
+
|
5258
|
+
def deserialize(params)
|
5259
|
+
@ErrCode = params['ErrCode']
|
5260
|
+
@ErrMessage = params['ErrMessage']
|
5261
|
+
unless params['Result'].nil?
|
5262
|
+
@Result = CreateFlexPayeeResult.new
|
5263
|
+
@Result.deserialize(params['Result'])
|
5264
|
+
end
|
5265
|
+
@RequestId = params['RequestId']
|
5266
|
+
end
|
5267
|
+
end
|
5268
|
+
|
5269
|
+
# 账户开立结果
|
5270
|
+
class CreateFlexPayeeResult < TencentCloud::Common::AbstractModel
|
5271
|
+
# @param PayeeId: 收款用户ID
|
5272
|
+
# @type PayeeId: String
|
5273
|
+
|
5274
|
+
attr_accessor :PayeeId
|
5275
|
+
|
5276
|
+
def initialize(payeeid=nil)
|
5277
|
+
@PayeeId = payeeid
|
5278
|
+
end
|
5279
|
+
|
5280
|
+
def deserialize(params)
|
5281
|
+
@PayeeId = params['PayeeId']
|
5282
|
+
end
|
5283
|
+
end
|
5284
|
+
|
4976
5285
|
# 发票开具明细
|
4977
5286
|
class CreateInvoiceItem < TencentCloud::Common::AbstractModel
|
4978
5287
|
# @param Name: 商品名称
|
@@ -6095,11 +6404,9 @@ module TencentCloud
|
|
6095
6404
|
# @type NotifyUrl: String
|
6096
6405
|
# @param ExpireTime: 订单过期时间,yyyy-MM-dd HH:mm:ss格式。
|
6097
6406
|
# @type ExpireTime: String
|
6098
|
-
# @param FrontUrl: 前端成功回调URL
|
6099
|
-
# 当付款方式PaymentMethod为EBANK_PAYMENT时必填
|
6407
|
+
# @param FrontUrl: 前端成功回调URL。条件可选。
|
6100
6408
|
# @type FrontUrl: String
|
6101
|
-
# @param RefreshUrl: 前端刷新 URL
|
6102
|
-
# 当付款方式PaymentMethod为EBANK_PAYMENT时必填
|
6409
|
+
# @param RefreshUrl: 前端刷新 URL。条件可选。
|
6103
6410
|
# @type RefreshUrl: String
|
6104
6411
|
# @param SceneInfo: 设备信息,条件可选。
|
6105
6412
|
# @type SceneInfo: :class:`Tencentcloud::Cpdp.v20190820.models.OpenBankSceneInfo`
|
@@ -8847,82 +9154,285 @@ module TencentCloud
|
|
8847
9154
|
end
|
8848
9155
|
end
|
8849
9156
|
|
8850
|
-
#
|
8851
|
-
class
|
8852
|
-
# @param
|
8853
|
-
#
|
8854
|
-
#
|
8855
|
-
# @type
|
8856
|
-
# @param
|
8857
|
-
#
|
8858
|
-
# @type BankBookingMessage: String
|
8859
|
-
# @param TranStatus: 交易状态。
|
8860
|
-
# __0__:成功
|
8861
|
-
# @type TranStatus: String
|
8862
|
-
# @param TransNetMemberCode: 业务方会员标识。
|
8863
|
-
# _平安渠道为交易网会员代码_
|
8864
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8865
|
-
# @type TransNetMemberCode: String
|
8866
|
-
# @param SubAccountNumber: 子账户账号。
|
8867
|
-
# _平安渠道为见证子账户的账号_
|
8868
|
-
# @type SubAccountNumber: String
|
8869
|
-
# @param SubAccountName: 子账户名称。
|
8870
|
-
# _平安渠道为见证子账户的户名_
|
8871
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8872
|
-
# @type SubAccountName: String
|
8873
|
-
# @param TransAmount: 交易金额。
|
8874
|
-
# @type TransAmount: String
|
8875
|
-
# @param TransFee: 交易手续费。
|
8876
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8877
|
-
# @type TransFee: String
|
8878
|
-
# @param TransDate: 交易日期,格式:yyyyMMdd。
|
8879
|
-
# @type TransDate: String
|
8880
|
-
# @param TransTime: 交易时间,格式:HHmmss。
|
8881
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8882
|
-
# @type TransTime: String
|
8883
|
-
# @param BankSequenceNumber: 银行系统流水号。
|
8884
|
-
# _平安渠道为见证系统流水号_
|
8885
|
-
# @type BankSequenceNumber: String
|
8886
|
-
# @param Remark: 备注。
|
8887
|
-
# _平安渠道,如果是见证+收单的交易,返回交易订单号_
|
8888
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8889
|
-
# @type Remark: String
|
9157
|
+
# 灵云V2-银行信息
|
9158
|
+
class FlexFundingAccountInfo < TencentCloud::Common::AbstractModel
|
9159
|
+
# @param FundingAccountNo: 资金账户号
|
9160
|
+
# @type FundingAccountNo: String
|
9161
|
+
# @param FundingAccountType: 资金账户类型
|
9162
|
+
# @type FundingAccountType: String
|
9163
|
+
# @param FundingAccountBindSerialNo: 资金账户绑定序列号
|
9164
|
+
# @type FundingAccountBindSerialNo: String
|
8890
9165
|
|
8891
|
-
attr_accessor :
|
9166
|
+
attr_accessor :FundingAccountNo, :FundingAccountType, :FundingAccountBindSerialNo
|
8892
9167
|
|
8893
|
-
def initialize(
|
8894
|
-
@
|
8895
|
-
@
|
8896
|
-
@
|
8897
|
-
@TransNetMemberCode = transnetmembercode
|
8898
|
-
@SubAccountNumber = subaccountnumber
|
8899
|
-
@SubAccountName = subaccountname
|
8900
|
-
@TransAmount = transamount
|
8901
|
-
@TransFee = transfee
|
8902
|
-
@TransDate = transdate
|
8903
|
-
@TransTime = transtime
|
8904
|
-
@BankSequenceNumber = banksequencenumber
|
8905
|
-
@Remark = remark
|
9168
|
+
def initialize(fundingaccountno=nil, fundingaccounttype=nil, fundingaccountbindserialno=nil)
|
9169
|
+
@FundingAccountNo = fundingaccountno
|
9170
|
+
@FundingAccountType = fundingaccounttype
|
9171
|
+
@FundingAccountBindSerialNo = fundingaccountbindserialno
|
8906
9172
|
end
|
8907
9173
|
|
8908
9174
|
def deserialize(params)
|
8909
|
-
@
|
8910
|
-
@
|
8911
|
-
@
|
8912
|
-
@TransNetMemberCode = params['TransNetMemberCode']
|
8913
|
-
@SubAccountNumber = params['SubAccountNumber']
|
8914
|
-
@SubAccountName = params['SubAccountName']
|
8915
|
-
@TransAmount = params['TransAmount']
|
8916
|
-
@TransFee = params['TransFee']
|
8917
|
-
@TransDate = params['TransDate']
|
8918
|
-
@TransTime = params['TransTime']
|
8919
|
-
@BankSequenceNumber = params['BankSequenceNumber']
|
8920
|
-
@Remark = params['Remark']
|
9175
|
+
@FundingAccountNo = params['FundingAccountNo']
|
9176
|
+
@FundingAccountType = params['FundingAccountType']
|
9177
|
+
@FundingAccountBindSerialNo = params['FundingAccountBindSerialNo']
|
8921
9178
|
end
|
8922
9179
|
end
|
8923
9180
|
|
8924
|
-
#
|
8925
|
-
class
|
9181
|
+
# FreezeFlexBalance请求参数结构体
|
9182
|
+
class FreezeFlexBalanceRequest < TencentCloud::Common::AbstractModel
|
9183
|
+
# @param PayeeId: 收款用户ID
|
9184
|
+
# @type PayeeId: String
|
9185
|
+
# @param AmountBeforeTax: 税前金额
|
9186
|
+
# @type AmountBeforeTax: String
|
9187
|
+
# @param IncomeType: 收入类型
|
9188
|
+
# LABOR:劳务所得
|
9189
|
+
# OCCASION:偶然所得
|
9190
|
+
# @type IncomeType: String
|
9191
|
+
# @param OutOrderId: 外部订单ID
|
9192
|
+
# @type OutOrderId: String
|
9193
|
+
# @param OperationType: 操作类型
|
9194
|
+
# FREEZE:冻结
|
9195
|
+
# UNFREEZE:解冻
|
9196
|
+
# @type OperationType: String
|
9197
|
+
# @param Remark: 冻结备注
|
9198
|
+
# @type Remark: String
|
9199
|
+
|
9200
|
+
attr_accessor :PayeeId, :AmountBeforeTax, :IncomeType, :OutOrderId, :OperationType, :Remark
|
9201
|
+
|
9202
|
+
def initialize(payeeid=nil, amountbeforetax=nil, incometype=nil, outorderid=nil, operationtype=nil, remark=nil)
|
9203
|
+
@PayeeId = payeeid
|
9204
|
+
@AmountBeforeTax = amountbeforetax
|
9205
|
+
@IncomeType = incometype
|
9206
|
+
@OutOrderId = outorderid
|
9207
|
+
@OperationType = operationtype
|
9208
|
+
@Remark = remark
|
9209
|
+
end
|
9210
|
+
|
9211
|
+
def deserialize(params)
|
9212
|
+
@PayeeId = params['PayeeId']
|
9213
|
+
@AmountBeforeTax = params['AmountBeforeTax']
|
9214
|
+
@IncomeType = params['IncomeType']
|
9215
|
+
@OutOrderId = params['OutOrderId']
|
9216
|
+
@OperationType = params['OperationType']
|
9217
|
+
@Remark = params['Remark']
|
9218
|
+
end
|
9219
|
+
end
|
9220
|
+
|
9221
|
+
# FreezeFlexBalance返回参数结构体
|
9222
|
+
class FreezeFlexBalanceResponse < TencentCloud::Common::AbstractModel
|
9223
|
+
# @param ErrCode: 错误码。SUCCESS为成功,其他为失败
|
9224
|
+
# @type ErrCode: String
|
9225
|
+
# @param ErrMessage: 错误消息
|
9226
|
+
# @type ErrMessage: String
|
9227
|
+
# @param Result: 返回结果
|
9228
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9229
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.FreezeFlexBalanceResult`
|
9230
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
9231
|
+
# @type RequestId: String
|
9232
|
+
|
9233
|
+
attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
|
9234
|
+
|
9235
|
+
def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
|
9236
|
+
@ErrCode = errcode
|
9237
|
+
@ErrMessage = errmessage
|
9238
|
+
@Result = result
|
9239
|
+
@RequestId = requestid
|
9240
|
+
end
|
9241
|
+
|
9242
|
+
def deserialize(params)
|
9243
|
+
@ErrCode = params['ErrCode']
|
9244
|
+
@ErrMessage = params['ErrMessage']
|
9245
|
+
unless params['Result'].nil?
|
9246
|
+
@Result = FreezeFlexBalanceResult.new
|
9247
|
+
@Result.deserialize(params['Result'])
|
9248
|
+
end
|
9249
|
+
@RequestId = params['RequestId']
|
9250
|
+
end
|
9251
|
+
end
|
9252
|
+
|
9253
|
+
# 冻结余额结果
|
9254
|
+
class FreezeFlexBalanceResult < TencentCloud::Common::AbstractModel
|
9255
|
+
# @param OrderId: 冻结订单ID
|
9256
|
+
# @type OrderId: String
|
9257
|
+
|
9258
|
+
attr_accessor :OrderId
|
9259
|
+
|
9260
|
+
def initialize(orderid=nil)
|
9261
|
+
@OrderId = orderid
|
9262
|
+
end
|
9263
|
+
|
9264
|
+
def deserialize(params)
|
9265
|
+
@OrderId = params['OrderId']
|
9266
|
+
end
|
9267
|
+
end
|
9268
|
+
|
9269
|
+
# 冻结单结果
|
9270
|
+
class FreezeOrderResult < TencentCloud::Common::AbstractModel
|
9271
|
+
# @param AmountBeforeTax: 税前金额
|
9272
|
+
# @type AmountBeforeTax: String
|
9273
|
+
# @param IncomeType: 收入类型
|
9274
|
+
# LABOR:劳务所得
|
9275
|
+
# OCCASION:偶然所得
|
9276
|
+
# @type IncomeType: String
|
9277
|
+
# @param OutOrderId: 外部订单ID
|
9278
|
+
# @type OutOrderId: String
|
9279
|
+
# @param OrderId: 订单ID
|
9280
|
+
# @type OrderId: String
|
9281
|
+
# @param OperationType: 操作类型
|
9282
|
+
# FREEZE:冻结
|
9283
|
+
# UNFREEZE:解冻
|
9284
|
+
# @type OperationType: String
|
9285
|
+
# @param InitiateTime: 发起时间
|
9286
|
+
# @type InitiateTime: String
|
9287
|
+
# @param FinishTime: 完成时间
|
9288
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9289
|
+
# @type FinishTime: String
|
9290
|
+
# @param Status: 状态
|
9291
|
+
# ACCEPTED:已受理
|
9292
|
+
# ACCOUNTED:已记账
|
9293
|
+
# SUCCEED:已成功
|
9294
|
+
# FAILED:已失败
|
9295
|
+
# @type Status: String
|
9296
|
+
# @param StatusDesc: 状态描述
|
9297
|
+
# @type StatusDesc: String
|
9298
|
+
# @param Remark: 冻结备注
|
9299
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9300
|
+
# @type Remark: String
|
9301
|
+
|
9302
|
+
attr_accessor :AmountBeforeTax, :IncomeType, :OutOrderId, :OrderId, :OperationType, :InitiateTime, :FinishTime, :Status, :StatusDesc, :Remark
|
9303
|
+
|
9304
|
+
def initialize(amountbeforetax=nil, incometype=nil, outorderid=nil, orderid=nil, operationtype=nil, initiatetime=nil, finishtime=nil, status=nil, statusdesc=nil, remark=nil)
|
9305
|
+
@AmountBeforeTax = amountbeforetax
|
9306
|
+
@IncomeType = incometype
|
9307
|
+
@OutOrderId = outorderid
|
9308
|
+
@OrderId = orderid
|
9309
|
+
@OperationType = operationtype
|
9310
|
+
@InitiateTime = initiatetime
|
9311
|
+
@FinishTime = finishtime
|
9312
|
+
@Status = status
|
9313
|
+
@StatusDesc = statusdesc
|
9314
|
+
@Remark = remark
|
9315
|
+
end
|
9316
|
+
|
9317
|
+
def deserialize(params)
|
9318
|
+
@AmountBeforeTax = params['AmountBeforeTax']
|
9319
|
+
@IncomeType = params['IncomeType']
|
9320
|
+
@OutOrderId = params['OutOrderId']
|
9321
|
+
@OrderId = params['OrderId']
|
9322
|
+
@OperationType = params['OperationType']
|
9323
|
+
@InitiateTime = params['InitiateTime']
|
9324
|
+
@FinishTime = params['FinishTime']
|
9325
|
+
@Status = params['Status']
|
9326
|
+
@StatusDesc = params['StatusDesc']
|
9327
|
+
@Remark = params['Remark']
|
9328
|
+
end
|
9329
|
+
end
|
9330
|
+
|
9331
|
+
# 冻结订单列表
|
9332
|
+
class FreezeOrders < TencentCloud::Common::AbstractModel
|
9333
|
+
# @param List: 列表
|
9334
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9335
|
+
# @type List: Array
|
9336
|
+
# @param Count: 总数
|
9337
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9338
|
+
# @type Count: Integer
|
9339
|
+
|
9340
|
+
attr_accessor :List, :Count
|
9341
|
+
|
9342
|
+
def initialize(list=nil, count=nil)
|
9343
|
+
@List = list
|
9344
|
+
@Count = count
|
9345
|
+
end
|
9346
|
+
|
9347
|
+
def deserialize(params)
|
9348
|
+
unless params['List'].nil?
|
9349
|
+
@List = []
|
9350
|
+
params['List'].each do |i|
|
9351
|
+
freezeorderresult_tmp = FreezeOrderResult.new
|
9352
|
+
freezeorderresult_tmp.deserialize(i)
|
9353
|
+
@List << freezeorderresult_tmp
|
9354
|
+
end
|
9355
|
+
end
|
9356
|
+
@Count = params['Count']
|
9357
|
+
end
|
9358
|
+
end
|
9359
|
+
|
9360
|
+
# 会员资金交易明细信息
|
9361
|
+
class FundsTransactionItem < TencentCloud::Common::AbstractModel
|
9362
|
+
# @param TransType: 资金交易类型。
|
9363
|
+
# __1__:提现/退款
|
9364
|
+
# __2__:清分/充值
|
9365
|
+
# @type TransType: String
|
9366
|
+
# @param BankBookingMessage: 银行记账说明。
|
9367
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9368
|
+
# @type BankBookingMessage: String
|
9369
|
+
# @param TranStatus: 交易状态。
|
9370
|
+
# __0__:成功
|
9371
|
+
# @type TranStatus: String
|
9372
|
+
# @param TransNetMemberCode: 业务方会员标识。
|
9373
|
+
# _平安渠道为交易网会员代码_
|
9374
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9375
|
+
# @type TransNetMemberCode: String
|
9376
|
+
# @param SubAccountNumber: 子账户账号。
|
9377
|
+
# _平安渠道为见证子账户的账号_
|
9378
|
+
# @type SubAccountNumber: String
|
9379
|
+
# @param SubAccountName: 子账户名称。
|
9380
|
+
# _平安渠道为见证子账户的户名_
|
9381
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9382
|
+
# @type SubAccountName: String
|
9383
|
+
# @param TransAmount: 交易金额。
|
9384
|
+
# @type TransAmount: String
|
9385
|
+
# @param TransFee: 交易手续费。
|
9386
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9387
|
+
# @type TransFee: String
|
9388
|
+
# @param TransDate: 交易日期,格式:yyyyMMdd。
|
9389
|
+
# @type TransDate: String
|
9390
|
+
# @param TransTime: 交易时间,格式:HHmmss。
|
9391
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9392
|
+
# @type TransTime: String
|
9393
|
+
# @param BankSequenceNumber: 银行系统流水号。
|
9394
|
+
# _平安渠道为见证系统流水号_
|
9395
|
+
# @type BankSequenceNumber: String
|
9396
|
+
# @param Remark: 备注。
|
9397
|
+
# _平安渠道,如果是见证+收单的交易,返回交易订单号_
|
9398
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9399
|
+
# @type Remark: String
|
9400
|
+
|
9401
|
+
attr_accessor :TransType, :BankBookingMessage, :TranStatus, :TransNetMemberCode, :SubAccountNumber, :SubAccountName, :TransAmount, :TransFee, :TransDate, :TransTime, :BankSequenceNumber, :Remark
|
9402
|
+
|
9403
|
+
def initialize(transtype=nil, bankbookingmessage=nil, transtatus=nil, transnetmembercode=nil, subaccountnumber=nil, subaccountname=nil, transamount=nil, transfee=nil, transdate=nil, transtime=nil, banksequencenumber=nil, remark=nil)
|
9404
|
+
@TransType = transtype
|
9405
|
+
@BankBookingMessage = bankbookingmessage
|
9406
|
+
@TranStatus = transtatus
|
9407
|
+
@TransNetMemberCode = transnetmembercode
|
9408
|
+
@SubAccountNumber = subaccountnumber
|
9409
|
+
@SubAccountName = subaccountname
|
9410
|
+
@TransAmount = transamount
|
9411
|
+
@TransFee = transfee
|
9412
|
+
@TransDate = transdate
|
9413
|
+
@TransTime = transtime
|
9414
|
+
@BankSequenceNumber = banksequencenumber
|
9415
|
+
@Remark = remark
|
9416
|
+
end
|
9417
|
+
|
9418
|
+
def deserialize(params)
|
9419
|
+
@TransType = params['TransType']
|
9420
|
+
@BankBookingMessage = params['BankBookingMessage']
|
9421
|
+
@TranStatus = params['TranStatus']
|
9422
|
+
@TransNetMemberCode = params['TransNetMemberCode']
|
9423
|
+
@SubAccountNumber = params['SubAccountNumber']
|
9424
|
+
@SubAccountName = params['SubAccountName']
|
9425
|
+
@TransAmount = params['TransAmount']
|
9426
|
+
@TransFee = params['TransFee']
|
9427
|
+
@TransDate = params['TransDate']
|
9428
|
+
@TransTime = params['TransTime']
|
9429
|
+
@BankSequenceNumber = params['BankSequenceNumber']
|
9430
|
+
@Remark = params['Remark']
|
9431
|
+
end
|
9432
|
+
end
|
9433
|
+
|
9434
|
+
# GetBillDownloadUrl请求参数结构体
|
9435
|
+
class GetBillDownloadUrlRequest < TencentCloud::Common::AbstractModel
|
8926
9436
|
# @param OpenId: 收单系统分配的开放ID
|
8927
9437
|
# @type OpenId: String
|
8928
9438
|
# @param OpenKey: 收单系统分配的密钥
|
@@ -9729,6 +10239,63 @@ module TencentCloud
|
|
9729
10239
|
end
|
9730
10240
|
end
|
9731
10241
|
|
10242
|
+
# ModifyFlexPayeeAccountRightStatus请求参数结构体
|
10243
|
+
class ModifyFlexPayeeAccountRightStatusRequest < TencentCloud::Common::AbstractModel
|
10244
|
+
# @param PayeeId: 收款用户ID
|
10245
|
+
# @type PayeeId: String
|
10246
|
+
# @param AccountRightType: 账户权益类型
|
10247
|
+
# SETTLEMENT:结算权益
|
10248
|
+
# PAYMENT:付款权益
|
10249
|
+
# @type AccountRightType: String
|
10250
|
+
# @param AccountRightStatus: 账户权益状态
|
10251
|
+
# ENABLE:启用
|
10252
|
+
# DISABLE:停用
|
10253
|
+
# @type AccountRightStatus: String
|
10254
|
+
|
10255
|
+
attr_accessor :PayeeId, :AccountRightType, :AccountRightStatus
|
10256
|
+
|
10257
|
+
def initialize(payeeid=nil, accountrighttype=nil, accountrightstatus=nil)
|
10258
|
+
@PayeeId = payeeid
|
10259
|
+
@AccountRightType = accountrighttype
|
10260
|
+
@AccountRightStatus = accountrightstatus
|
10261
|
+
end
|
10262
|
+
|
10263
|
+
def deserialize(params)
|
10264
|
+
@PayeeId = params['PayeeId']
|
10265
|
+
@AccountRightType = params['AccountRightType']
|
10266
|
+
@AccountRightStatus = params['AccountRightStatus']
|
10267
|
+
end
|
10268
|
+
end
|
10269
|
+
|
10270
|
+
# ModifyFlexPayeeAccountRightStatus返回参数结构体
|
10271
|
+
class ModifyFlexPayeeAccountRightStatusResponse < TencentCloud::Common::AbstractModel
|
10272
|
+
# @param ErrCode: 错误码。SUCCESS为成功,其他为失败
|
10273
|
+
# @type ErrCode: String
|
10274
|
+
# @param ErrMessage: 错误消息
|
10275
|
+
# @type ErrMessage: String
|
10276
|
+
# @param Result: 返回结果。默认为空。
|
10277
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10278
|
+
# @type Result: String
|
10279
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
10280
|
+
# @type RequestId: String
|
10281
|
+
|
10282
|
+
attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
|
10283
|
+
|
10284
|
+
def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
|
10285
|
+
@ErrCode = errcode
|
10286
|
+
@ErrMessage = errmessage
|
10287
|
+
@Result = result
|
10288
|
+
@RequestId = requestid
|
10289
|
+
end
|
10290
|
+
|
10291
|
+
def deserialize(params)
|
10292
|
+
@ErrCode = params['ErrCode']
|
10293
|
+
@ErrMessage = params['ErrMessage']
|
10294
|
+
@Result = params['Result']
|
10295
|
+
@RequestId = params['RequestId']
|
10296
|
+
end
|
10297
|
+
end
|
10298
|
+
|
9732
10299
|
# ModifyMerchant请求参数结构体
|
9733
10300
|
class ModifyMerchantRequest < TencentCloud::Common::AbstractModel
|
9734
10301
|
# @param MerchantAppId: 进件成功后返给商户的AppId
|
@@ -9947,11 +10514,11 @@ module TencentCloud
|
|
9947
10514
|
|
9948
10515
|
# 云企付-商品信息
|
9949
10516
|
class OpenBankGoodsInfo < TencentCloud::Common::AbstractModel
|
9950
|
-
# @param GoodsName:
|
10517
|
+
# @param GoodsName: 商品标题,默认值“商品支付”
|
9951
10518
|
# @type GoodsName: String
|
9952
10519
|
# @param GoodsDetail: 商品详细描述(商品列表)
|
9953
10520
|
# @type GoodsDetail: String
|
9954
|
-
# @param GoodsDescription:
|
10521
|
+
# @param GoodsDescription: 银行附言,不可以有以下字符:<>+{}()%*&';"[]等特殊符号
|
9955
10522
|
# @type GoodsDescription: String
|
9956
10523
|
|
9957
10524
|
attr_accessor :GoodsName, :GoodsDetail, :GoodsDescription
|
@@ -10669,42 +11236,462 @@ module TencentCloud
|
|
10669
11236
|
end
|
10670
11237
|
end
|
10671
11238
|
|
10672
|
-
#
|
10673
|
-
class
|
10674
|
-
# @param
|
10675
|
-
#
|
10676
|
-
# @
|
10677
|
-
# @
|
10678
|
-
#
|
10679
|
-
#
|
10680
|
-
#
|
10681
|
-
# @type
|
10682
|
-
# @param
|
10683
|
-
#
|
10684
|
-
#
|
10685
|
-
#
|
10686
|
-
#
|
10687
|
-
# @
|
10688
|
-
#
|
10689
|
-
#
|
10690
|
-
#
|
10691
|
-
#
|
10692
|
-
#
|
11239
|
+
# 账户余额信息
|
11240
|
+
class PayeeAccountBalanceResult < TencentCloud::Common::AbstractModel
|
11241
|
+
# @param AccountId: 账户ID
|
11242
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11243
|
+
# @type AccountId: String
|
11244
|
+
# @param IncomeType: 收入类型
|
11245
|
+
# LABOR:劳务所得
|
11246
|
+
# OCCASION:偶然所得
|
11247
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11248
|
+
# @type IncomeType: Integer
|
11249
|
+
# @param Balance: 总余额
|
11250
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11251
|
+
# @type Balance: String
|
11252
|
+
# @param SystemFreezeBalance: 系统冻结余额
|
11253
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11254
|
+
# @type SystemFreezeBalance: String
|
11255
|
+
# @param ManualFreezeBalance: 人工冻结余额
|
11256
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11257
|
+
# @type ManualFreezeBalance: String
|
11258
|
+
# @param PayableBalance: 可提现余额
|
11259
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11260
|
+
# @type PayableBalance: String
|
11261
|
+
# @param PaidBalance: 已提现余额
|
11262
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11263
|
+
# @type PaidBalance: String
|
11264
|
+
# @param InPayBalance: 提现中余额
|
11265
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11266
|
+
# @type InPayBalance: String
|
10693
11267
|
|
10694
|
-
attr_accessor :
|
11268
|
+
attr_accessor :AccountId, :IncomeType, :Balance, :SystemFreezeBalance, :ManualFreezeBalance, :PayableBalance, :PaidBalance, :InPayBalance
|
10695
11269
|
|
10696
|
-
def initialize(
|
10697
|
-
@
|
10698
|
-
@
|
10699
|
-
@
|
10700
|
-
@
|
10701
|
-
@
|
10702
|
-
@
|
11270
|
+
def initialize(accountid=nil, incometype=nil, balance=nil, systemfreezebalance=nil, manualfreezebalance=nil, payablebalance=nil, paidbalance=nil, inpaybalance=nil)
|
11271
|
+
@AccountId = accountid
|
11272
|
+
@IncomeType = incometype
|
11273
|
+
@Balance = balance
|
11274
|
+
@SystemFreezeBalance = systemfreezebalance
|
11275
|
+
@ManualFreezeBalance = manualfreezebalance
|
11276
|
+
@PayableBalance = payablebalance
|
11277
|
+
@PaidBalance = paidbalance
|
11278
|
+
@InPayBalance = inpaybalance
|
10703
11279
|
end
|
10704
11280
|
|
10705
11281
|
def deserialize(params)
|
10706
|
-
@
|
10707
|
-
@
|
11282
|
+
@AccountId = params['AccountId']
|
11283
|
+
@IncomeType = params['IncomeType']
|
11284
|
+
@Balance = params['Balance']
|
11285
|
+
@SystemFreezeBalance = params['SystemFreezeBalance']
|
11286
|
+
@ManualFreezeBalance = params['ManualFreezeBalance']
|
11287
|
+
@PayableBalance = params['PayableBalance']
|
11288
|
+
@PaidBalance = params['PaidBalance']
|
11289
|
+
@InPayBalance = params['InPayBalance']
|
11290
|
+
end
|
11291
|
+
end
|
11292
|
+
|
11293
|
+
# 账户信息结果
|
11294
|
+
class PayeeAccountInfoResult < TencentCloud::Common::AbstractModel
|
11295
|
+
# @param AccountId: 账户ID
|
11296
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11297
|
+
# @type AccountId: String
|
11298
|
+
# @param AccountName: 账户名称
|
11299
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11300
|
+
# @type AccountName: String
|
11301
|
+
# @param Remark: 备注
|
11302
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11303
|
+
# @type Remark: String
|
11304
|
+
# @param CreateTime: 创建时间
|
11305
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11306
|
+
# @type CreateTime: String
|
11307
|
+
# @param UserInfo: 用户信息
|
11308
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11309
|
+
# @type UserInfo: :class:`Tencentcloud::Cpdp.v20190820.models.PayeeAccountUserInfo`
|
11310
|
+
# @param PropertyInfo: 属性信息
|
11311
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11312
|
+
# @type PropertyInfo: :class:`Tencentcloud::Cpdp.v20190820.models.PayeeAccountPropertyInfo`
|
11313
|
+
|
11314
|
+
attr_accessor :AccountId, :AccountName, :Remark, :CreateTime, :UserInfo, :PropertyInfo
|
11315
|
+
|
11316
|
+
def initialize(accountid=nil, accountname=nil, remark=nil, createtime=nil, userinfo=nil, propertyinfo=nil)
|
11317
|
+
@AccountId = accountid
|
11318
|
+
@AccountName = accountname
|
11319
|
+
@Remark = remark
|
11320
|
+
@CreateTime = createtime
|
11321
|
+
@UserInfo = userinfo
|
11322
|
+
@PropertyInfo = propertyinfo
|
11323
|
+
end
|
11324
|
+
|
11325
|
+
def deserialize(params)
|
11326
|
+
@AccountId = params['AccountId']
|
11327
|
+
@AccountName = params['AccountName']
|
11328
|
+
@Remark = params['Remark']
|
11329
|
+
@CreateTime = params['CreateTime']
|
11330
|
+
unless params['UserInfo'].nil?
|
11331
|
+
@UserInfo = PayeeAccountUserInfo.new
|
11332
|
+
@UserInfo.deserialize(params['UserInfo'])
|
11333
|
+
end
|
11334
|
+
unless params['PropertyInfo'].nil?
|
11335
|
+
@PropertyInfo = PayeeAccountPropertyInfo.new
|
11336
|
+
@PropertyInfo.deserialize(params['PropertyInfo'])
|
11337
|
+
end
|
11338
|
+
end
|
11339
|
+
end
|
11340
|
+
|
11341
|
+
# 账户信息列表
|
11342
|
+
class PayeeAccountInfos < TencentCloud::Common::AbstractModel
|
11343
|
+
# @param List: 列表
|
11344
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11345
|
+
# @type List: Array
|
11346
|
+
# @param Count: 总数
|
11347
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11348
|
+
# @type Count: Integer
|
11349
|
+
|
11350
|
+
attr_accessor :List, :Count
|
11351
|
+
|
11352
|
+
def initialize(list=nil, count=nil)
|
11353
|
+
@List = list
|
11354
|
+
@Count = count
|
11355
|
+
end
|
11356
|
+
|
11357
|
+
def deserialize(params)
|
11358
|
+
unless params['List'].nil?
|
11359
|
+
@List = []
|
11360
|
+
params['List'].each do |i|
|
11361
|
+
payeeaccountinforesult_tmp = PayeeAccountInfoResult.new
|
11362
|
+
payeeaccountinforesult_tmp.deserialize(i)
|
11363
|
+
@List << payeeaccountinforesult_tmp
|
11364
|
+
end
|
11365
|
+
end
|
11366
|
+
@Count = params['Count']
|
11367
|
+
end
|
11368
|
+
end
|
11369
|
+
|
11370
|
+
# 账户属性信息
|
11371
|
+
class PayeeAccountPropertyInfo < TencentCloud::Common::AbstractModel
|
11372
|
+
# @param SettleRightStatus: 结算权益状态
|
11373
|
+
# ENABLE:启用
|
11374
|
+
# DISABLE:停用
|
11375
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11376
|
+
# @type SettleRightStatus: String
|
11377
|
+
# @param PaymentRightStatus: 付款权益状态
|
11378
|
+
# ENABLE:启用
|
11379
|
+
# DISABLE:停用
|
11380
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11381
|
+
# @type PaymentRightStatus: String
|
11382
|
+
|
11383
|
+
attr_accessor :SettleRightStatus, :PaymentRightStatus
|
11384
|
+
|
11385
|
+
def initialize(settlerightstatus=nil, paymentrightstatus=nil)
|
11386
|
+
@SettleRightStatus = settlerightstatus
|
11387
|
+
@PaymentRightStatus = paymentrightstatus
|
11388
|
+
end
|
11389
|
+
|
11390
|
+
def deserialize(params)
|
11391
|
+
@SettleRightStatus = params['SettleRightStatus']
|
11392
|
+
@PaymentRightStatus = params['PaymentRightStatus']
|
11393
|
+
end
|
11394
|
+
end
|
11395
|
+
|
11396
|
+
# 账户用户信息
|
11397
|
+
class PayeeAccountUserInfo < TencentCloud::Common::AbstractModel
|
11398
|
+
# @param OutUserId: 外部用户ID
|
11399
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11400
|
+
# @type OutUserId: String
|
11401
|
+
# @param UserType: 用户类型
|
11402
|
+
# 0:B端用户
|
11403
|
+
# 1:C端用户
|
11404
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11405
|
+
# @type UserType: Integer
|
11406
|
+
# @param IdType: 证件类型
|
11407
|
+
# 0:身份证
|
11408
|
+
# 1:社会信用代码
|
11409
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11410
|
+
# @type IdType: Integer
|
11411
|
+
# @param IdNo: 证件号
|
11412
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11413
|
+
# @type IdNo: String
|
11414
|
+
# @param Name: 姓名
|
11415
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11416
|
+
# @type Name: String
|
11417
|
+
|
11418
|
+
attr_accessor :OutUserId, :UserType, :IdType, :IdNo, :Name
|
11419
|
+
|
11420
|
+
def initialize(outuserid=nil, usertype=nil, idtype=nil, idno=nil, name=nil)
|
11421
|
+
@OutUserId = outuserid
|
11422
|
+
@UserType = usertype
|
11423
|
+
@IdType = idtype
|
11424
|
+
@IdNo = idno
|
11425
|
+
@Name = name
|
11426
|
+
end
|
11427
|
+
|
11428
|
+
def deserialize(params)
|
11429
|
+
@OutUserId = params['OutUserId']
|
11430
|
+
@UserType = params['UserType']
|
11431
|
+
@IdType = params['IdType']
|
11432
|
+
@IdNo = params['IdNo']
|
11433
|
+
@Name = params['Name']
|
11434
|
+
end
|
11435
|
+
end
|
11436
|
+
|
11437
|
+
# 收款用户信息结果
|
11438
|
+
class PayeeInfoResult < TencentCloud::Common::AbstractModel
|
11439
|
+
# @param PayeeId: 收款用户ID
|
11440
|
+
# @type PayeeId: String
|
11441
|
+
# @param OutUserId: 用户外部业务ID
|
11442
|
+
# @type OutUserId: String
|
11443
|
+
# @param Name: 姓名
|
11444
|
+
# @type Name: String
|
11445
|
+
# @param IdType: 证件类型
|
11446
|
+
# 0:身份证
|
11447
|
+
# 1:社会信用代码
|
11448
|
+
# @type IdType: Integer
|
11449
|
+
# @param IdNo: 证件号
|
11450
|
+
# @type IdNo: String
|
11451
|
+
# @param ServiceProviderId: 服务商ID
|
11452
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11453
|
+
# @type ServiceProviderId: String
|
11454
|
+
# @param Remark: 备注
|
11455
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11456
|
+
# @type Remark: String
|
11457
|
+
|
11458
|
+
attr_accessor :PayeeId, :OutUserId, :Name, :IdType, :IdNo, :ServiceProviderId, :Remark
|
11459
|
+
|
11460
|
+
def initialize(payeeid=nil, outuserid=nil, name=nil, idtype=nil, idno=nil, serviceproviderid=nil, remark=nil)
|
11461
|
+
@PayeeId = payeeid
|
11462
|
+
@OutUserId = outuserid
|
11463
|
+
@Name = name
|
11464
|
+
@IdType = idtype
|
11465
|
+
@IdNo = idno
|
11466
|
+
@ServiceProviderId = serviceproviderid
|
11467
|
+
@Remark = remark
|
11468
|
+
end
|
11469
|
+
|
11470
|
+
def deserialize(params)
|
11471
|
+
@PayeeId = params['PayeeId']
|
11472
|
+
@OutUserId = params['OutUserId']
|
11473
|
+
@Name = params['Name']
|
11474
|
+
@IdType = params['IdType']
|
11475
|
+
@IdNo = params['IdNo']
|
11476
|
+
@ServiceProviderId = params['ServiceProviderId']
|
11477
|
+
@Remark = params['Remark']
|
11478
|
+
end
|
11479
|
+
end
|
11480
|
+
|
11481
|
+
# 计税信息
|
11482
|
+
class PayeeTaxInfo < TencentCloud::Common::AbstractModel
|
11483
|
+
# @param TaxTemplateInfoList: 计税模板列表
|
11484
|
+
# @type TaxTemplateInfoList: Array
|
11485
|
+
# @param TaxpayerIdNo: 纳税人识别号
|
11486
|
+
# @type TaxpayerIdNo: String
|
11487
|
+
# @param TaxEntityType: 纳税主体类型
|
11488
|
+
# NATURAL:自然人
|
11489
|
+
# NON_NATURAL:非自然人
|
11490
|
+
# @type TaxEntityType: String
|
11491
|
+
# @param TaxServiceProviderId: 财税服务商ID
|
11492
|
+
# @type TaxServiceProviderId: String
|
11493
|
+
|
11494
|
+
attr_accessor :TaxTemplateInfoList, :TaxpayerIdNo, :TaxEntityType, :TaxServiceProviderId
|
11495
|
+
|
11496
|
+
def initialize(taxtemplateinfolist=nil, taxpayeridno=nil, taxentitytype=nil, taxserviceproviderid=nil)
|
11497
|
+
@TaxTemplateInfoList = taxtemplateinfolist
|
11498
|
+
@TaxpayerIdNo = taxpayeridno
|
11499
|
+
@TaxEntityType = taxentitytype
|
11500
|
+
@TaxServiceProviderId = taxserviceproviderid
|
11501
|
+
end
|
11502
|
+
|
11503
|
+
def deserialize(params)
|
11504
|
+
unless params['TaxTemplateInfoList'].nil?
|
11505
|
+
@TaxTemplateInfoList = []
|
11506
|
+
params['TaxTemplateInfoList'].each do |i|
|
11507
|
+
payeetaxtemplateinfo_tmp = PayeeTaxTemplateInfo.new
|
11508
|
+
payeetaxtemplateinfo_tmp.deserialize(i)
|
11509
|
+
@TaxTemplateInfoList << payeetaxtemplateinfo_tmp
|
11510
|
+
end
|
11511
|
+
end
|
11512
|
+
@TaxpayerIdNo = params['TaxpayerIdNo']
|
11513
|
+
@TaxEntityType = params['TaxEntityType']
|
11514
|
+
@TaxServiceProviderId = params['TaxServiceProviderId']
|
11515
|
+
end
|
11516
|
+
end
|
11517
|
+
|
11518
|
+
# 收款用户计税模板信息
|
11519
|
+
class PayeeTaxTemplateInfo < TencentCloud::Common::AbstractModel
|
11520
|
+
# @param IncomeType: 收入类型
|
11521
|
+
# LABOR: 劳务所得
|
11522
|
+
# OCCASION: 偶然所得
|
11523
|
+
# @type IncomeType: String
|
11524
|
+
# @param TaxTemplateId: 计税模板ID
|
11525
|
+
# @type TaxTemplateId: String
|
11526
|
+
|
11527
|
+
attr_accessor :IncomeType, :TaxTemplateId
|
11528
|
+
|
11529
|
+
def initialize(incometype=nil, taxtemplateid=nil)
|
11530
|
+
@IncomeType = incometype
|
11531
|
+
@TaxTemplateId = taxtemplateid
|
11532
|
+
end
|
11533
|
+
|
11534
|
+
def deserialize(params)
|
11535
|
+
@IncomeType = params['IncomeType']
|
11536
|
+
@TaxTemplateId = params['TaxTemplateId']
|
11537
|
+
end
|
11538
|
+
end
|
11539
|
+
|
11540
|
+
# 付款订单结果
|
11541
|
+
class PaymentOrderResult < TencentCloud::Common::AbstractModel
|
11542
|
+
# @param IncomeType: 收入类型
|
11543
|
+
# LABOR:劳务所得
|
11544
|
+
# OCCASION:偶然所得
|
11545
|
+
# @type IncomeType: String
|
11546
|
+
# @param AmountBeforeTax: 税前金额
|
11547
|
+
# @type AmountBeforeTax: String
|
11548
|
+
# @param AmountAfterTax: 税后金额
|
11549
|
+
# @type AmountAfterTax: String
|
11550
|
+
# @param Tax: 税金
|
11551
|
+
# @type Tax: String
|
11552
|
+
# @param OutOrderId: 外部订单ID
|
11553
|
+
# @type OutOrderId: String
|
11554
|
+
# @param OrderId: 订单ID
|
11555
|
+
# @type OrderId: String
|
11556
|
+
# @param InitiateTime: 发起时间
|
11557
|
+
# @type InitiateTime: String
|
11558
|
+
# @param FinishTime: 完成时间
|
11559
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11560
|
+
# @type FinishTime: String
|
11561
|
+
# @param Status: 状态
|
11562
|
+
# ACCEPTED:已受理
|
11563
|
+
# ACCOUNTED:已记账
|
11564
|
+
# PAYING:付款中
|
11565
|
+
# PAYED:完成付款渠道调用
|
11566
|
+
# SUCCEED:已成功
|
11567
|
+
# FAILED:已失败
|
11568
|
+
# @type Status: String
|
11569
|
+
# @param StatusDesc: 状态描述
|
11570
|
+
# @type StatusDesc: String
|
11571
|
+
# @param Remark: 提现备注
|
11572
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11573
|
+
# @type Remark: String
|
11574
|
+
|
11575
|
+
attr_accessor :IncomeType, :AmountBeforeTax, :AmountAfterTax, :Tax, :OutOrderId, :OrderId, :InitiateTime, :FinishTime, :Status, :StatusDesc, :Remark
|
11576
|
+
|
11577
|
+
def initialize(incometype=nil, amountbeforetax=nil, amountaftertax=nil, tax=nil, outorderid=nil, orderid=nil, initiatetime=nil, finishtime=nil, status=nil, statusdesc=nil, remark=nil)
|
11578
|
+
@IncomeType = incometype
|
11579
|
+
@AmountBeforeTax = amountbeforetax
|
11580
|
+
@AmountAfterTax = amountaftertax
|
11581
|
+
@Tax = tax
|
11582
|
+
@OutOrderId = outorderid
|
11583
|
+
@OrderId = orderid
|
11584
|
+
@InitiateTime = initiatetime
|
11585
|
+
@FinishTime = finishtime
|
11586
|
+
@Status = status
|
11587
|
+
@StatusDesc = statusdesc
|
11588
|
+
@Remark = remark
|
11589
|
+
end
|
11590
|
+
|
11591
|
+
def deserialize(params)
|
11592
|
+
@IncomeType = params['IncomeType']
|
11593
|
+
@AmountBeforeTax = params['AmountBeforeTax']
|
11594
|
+
@AmountAfterTax = params['AmountAfterTax']
|
11595
|
+
@Tax = params['Tax']
|
11596
|
+
@OutOrderId = params['OutOrderId']
|
11597
|
+
@OrderId = params['OrderId']
|
11598
|
+
@InitiateTime = params['InitiateTime']
|
11599
|
+
@FinishTime = params['FinishTime']
|
11600
|
+
@Status = params['Status']
|
11601
|
+
@StatusDesc = params['StatusDesc']
|
11602
|
+
@Remark = params['Remark']
|
11603
|
+
end
|
11604
|
+
end
|
11605
|
+
|
11606
|
+
# 付款订单状态结果
|
11607
|
+
class PaymentOrderStatusResult < TencentCloud::Common::AbstractModel
|
11608
|
+
# @param Status: 状态
|
11609
|
+
# ACCEPTED:已受理
|
11610
|
+
# ACCOUNTED:已记账
|
11611
|
+
# PAYING:付款中
|
11612
|
+
# PAYED:完成付款渠道调用
|
11613
|
+
# SUCCEED:已成功
|
11614
|
+
# FAILED:已失败
|
11615
|
+
# @type Status: String
|
11616
|
+
# @param StatusDesc: 状态描述
|
11617
|
+
# @type StatusDesc: String
|
11618
|
+
|
11619
|
+
attr_accessor :Status, :StatusDesc
|
11620
|
+
|
11621
|
+
def initialize(status=nil, statusdesc=nil)
|
11622
|
+
@Status = status
|
11623
|
+
@StatusDesc = statusdesc
|
11624
|
+
end
|
11625
|
+
|
11626
|
+
def deserialize(params)
|
11627
|
+
@Status = params['Status']
|
11628
|
+
@StatusDesc = params['StatusDesc']
|
11629
|
+
end
|
11630
|
+
end
|
11631
|
+
|
11632
|
+
# 付款订单列表
|
11633
|
+
class PaymentOrders < TencentCloud::Common::AbstractModel
|
11634
|
+
# @param List: 列表
|
11635
|
+
# @type List: Array
|
11636
|
+
# @param Count: 总数
|
11637
|
+
# @type Count: Integer
|
11638
|
+
|
11639
|
+
attr_accessor :List, :Count
|
11640
|
+
|
11641
|
+
def initialize(list=nil, count=nil)
|
11642
|
+
@List = list
|
11643
|
+
@Count = count
|
11644
|
+
end
|
11645
|
+
|
11646
|
+
def deserialize(params)
|
11647
|
+
unless params['List'].nil?
|
11648
|
+
@List = []
|
11649
|
+
params['List'].each do |i|
|
11650
|
+
paymentorderresult_tmp = PaymentOrderResult.new
|
11651
|
+
paymentorderresult_tmp.deserialize(i)
|
11652
|
+
@List << paymentorderresult_tmp
|
11653
|
+
end
|
11654
|
+
end
|
11655
|
+
@Count = params['Count']
|
11656
|
+
end
|
11657
|
+
end
|
11658
|
+
|
11659
|
+
# QueryAcctBinding请求参数结构体
|
11660
|
+
class QueryAcctBindingRequest < TencentCloud::Common::AbstractModel
|
11661
|
+
# @param MidasAppId: 聚鑫分配的支付主MidasAppId
|
11662
|
+
# @type MidasAppId: String
|
11663
|
+
# @param SubAppId: 聚鑫计费SubAppId,代表子商户
|
11664
|
+
# @type SubAppId: String
|
11665
|
+
# @param MidasSecretId: 由平台客服提供的计费密钥Id
|
11666
|
+
# @type MidasSecretId: String
|
11667
|
+
# @param MidasSignature: 计费签名
|
11668
|
+
# @type MidasSignature: String
|
11669
|
+
# @param EncryptType: 敏感信息加密类型:
|
11670
|
+
# RSA: rsa非对称加密,使用RSA-PKCS1-v1_5
|
11671
|
+
# AES: aes对称加密,使用AES256-CBC-PCKS7padding
|
11672
|
+
# 缺省: RSA
|
11673
|
+
# @type EncryptType: String
|
11674
|
+
# @param MidasEnvironment: 环境名:
|
11675
|
+
# release: 现网环境
|
11676
|
+
# sandbox: 沙箱环境
|
11677
|
+
# development: 开发环境
|
11678
|
+
# 缺省: release
|
11679
|
+
# @type MidasEnvironment: String
|
11680
|
+
|
11681
|
+
attr_accessor :MidasAppId, :SubAppId, :MidasSecretId, :MidasSignature, :EncryptType, :MidasEnvironment
|
11682
|
+
|
11683
|
+
def initialize(midasappid=nil, subappid=nil, midassecretid=nil, midassignature=nil, encrypttype=nil, midasenvironment=nil)
|
11684
|
+
@MidasAppId = midasappid
|
11685
|
+
@SubAppId = subappid
|
11686
|
+
@MidasSecretId = midassecretid
|
11687
|
+
@MidasSignature = midassignature
|
11688
|
+
@EncryptType = encrypttype
|
11689
|
+
@MidasEnvironment = midasenvironment
|
11690
|
+
end
|
11691
|
+
|
11692
|
+
def deserialize(params)
|
11693
|
+
@MidasAppId = params['MidasAppId']
|
11694
|
+
@SubAppId = params['SubAppId']
|
10708
11695
|
@MidasSecretId = params['MidasSecretId']
|
10709
11696
|
@MidasSignature = params['MidasSignature']
|
10710
11697
|
@EncryptType = params['EncryptType']
|
@@ -13011,26 +13998,600 @@ module TencentCloud
|
|
13011
13998
|
end
|
13012
13999
|
end
|
13013
14000
|
|
13014
|
-
# QueryExceedingInfo请求参数结构体
|
13015
|
-
class QueryExceedingInfoRequest < TencentCloud::Common::AbstractModel
|
13016
|
-
# @param TimeStr: 超额日期。格式为yyyy-MM-dd。
|
13017
|
-
# @type TimeStr: String
|
13018
|
-
# @param Dimension: 维度。目前支持三个维度: AGENT, ANCHOR, ORDER。不填默认使用AGENT维度。
|
13019
|
-
# @type Dimension: String
|
13020
|
-
# @param PageNumber: 分页信息。不填默认Index为1,Count为100。
|
14001
|
+
# QueryExceedingInfo请求参数结构体
|
14002
|
+
class QueryExceedingInfoRequest < TencentCloud::Common::AbstractModel
|
14003
|
+
# @param TimeStr: 超额日期。格式为yyyy-MM-dd。
|
14004
|
+
# @type TimeStr: String
|
14005
|
+
# @param Dimension: 维度。目前支持三个维度: AGENT, ANCHOR, ORDER。不填默认使用AGENT维度。
|
14006
|
+
# @type Dimension: String
|
14007
|
+
# @param PageNumber: 分页信息。不填默认Index为1,Count为100。
|
14008
|
+
# @type PageNumber: :class:`Tencentcloud::Cpdp.v20190820.models.Paging`
|
14009
|
+
|
14010
|
+
attr_accessor :TimeStr, :Dimension, :PageNumber
|
14011
|
+
|
14012
|
+
def initialize(timestr=nil, dimension=nil, pagenumber=nil)
|
14013
|
+
@TimeStr = timestr
|
14014
|
+
@Dimension = dimension
|
14015
|
+
@PageNumber = pagenumber
|
14016
|
+
end
|
14017
|
+
|
14018
|
+
def deserialize(params)
|
14019
|
+
@TimeStr = params['TimeStr']
|
14020
|
+
@Dimension = params['Dimension']
|
14021
|
+
unless params['PageNumber'].nil?
|
14022
|
+
@PageNumber = Paging.new
|
14023
|
+
@PageNumber.deserialize(params['PageNumber'])
|
14024
|
+
end
|
14025
|
+
end
|
14026
|
+
end
|
14027
|
+
|
14028
|
+
# QueryExceedingInfo返回参数结构体
|
14029
|
+
class QueryExceedingInfoResponse < TencentCloud::Common::AbstractModel
|
14030
|
+
# @param ErrCode: 错误码。
|
14031
|
+
# @type ErrCode: String
|
14032
|
+
# @param ErrMessage: 错误消息。
|
14033
|
+
# @type ErrMessage: String
|
14034
|
+
# @param Result: 超额信息结果。
|
14035
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14036
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.QueryExceedingInfoResult`
|
14037
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
14038
|
+
# @type RequestId: String
|
14039
|
+
|
14040
|
+
attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
|
14041
|
+
|
14042
|
+
def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
|
14043
|
+
@ErrCode = errcode
|
14044
|
+
@ErrMessage = errmessage
|
14045
|
+
@Result = result
|
14046
|
+
@RequestId = requestid
|
14047
|
+
end
|
14048
|
+
|
14049
|
+
def deserialize(params)
|
14050
|
+
@ErrCode = params['ErrCode']
|
14051
|
+
@ErrMessage = params['ErrMessage']
|
14052
|
+
unless params['Result'].nil?
|
14053
|
+
@Result = QueryExceedingInfoResult.new
|
14054
|
+
@Result.deserialize(params['Result'])
|
14055
|
+
end
|
14056
|
+
@RequestId = params['RequestId']
|
14057
|
+
end
|
14058
|
+
end
|
14059
|
+
|
14060
|
+
# 超额信息结果
|
14061
|
+
class QueryExceedingInfoResult < TencentCloud::Common::AbstractModel
|
14062
|
+
# @param Count: 记录总数。
|
14063
|
+
# @type Count: Integer
|
14064
|
+
# @param Data: 超额信息数据。
|
14065
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14066
|
+
# @type Data: Array
|
14067
|
+
|
14068
|
+
attr_accessor :Count, :Data
|
14069
|
+
|
14070
|
+
def initialize(count=nil, data=nil)
|
14071
|
+
@Count = count
|
14072
|
+
@Data = data
|
14073
|
+
end
|
14074
|
+
|
14075
|
+
def deserialize(params)
|
14076
|
+
@Count = params['Count']
|
14077
|
+
unless params['Data'].nil?
|
14078
|
+
@Data = []
|
14079
|
+
params['Data'].each do |i|
|
14080
|
+
queryexceedinginfodata_tmp = QueryExceedingInfoData.new
|
14081
|
+
queryexceedinginfodata_tmp.deserialize(i)
|
14082
|
+
@Data << queryexceedinginfodata_tmp
|
14083
|
+
end
|
14084
|
+
end
|
14085
|
+
end
|
14086
|
+
end
|
14087
|
+
|
14088
|
+
# QueryExchangeRate请求参数结构体
|
14089
|
+
class QueryExchangeRateRequest < TencentCloud::Common::AbstractModel
|
14090
|
+
# @param SourceCurrency: 源币种 (默认CNY)
|
14091
|
+
# @type SourceCurrency: String
|
14092
|
+
# @param TargetCurrency: 目的币种 (见常见问题-汇出币种)
|
14093
|
+
# @type TargetCurrency: String
|
14094
|
+
# @param Profile: 接入环境。沙箱环境填sandbox
|
14095
|
+
# @type Profile: String
|
14096
|
+
|
14097
|
+
attr_accessor :SourceCurrency, :TargetCurrency, :Profile
|
14098
|
+
|
14099
|
+
def initialize(sourcecurrency=nil, targetcurrency=nil, profile=nil)
|
14100
|
+
@SourceCurrency = sourcecurrency
|
14101
|
+
@TargetCurrency = targetcurrency
|
14102
|
+
@Profile = profile
|
14103
|
+
end
|
14104
|
+
|
14105
|
+
def deserialize(params)
|
14106
|
+
@SourceCurrency = params['SourceCurrency']
|
14107
|
+
@TargetCurrency = params['TargetCurrency']
|
14108
|
+
@Profile = params['Profile']
|
14109
|
+
end
|
14110
|
+
end
|
14111
|
+
|
14112
|
+
# QueryExchangeRate返回参数结构体
|
14113
|
+
class QueryExchangeRateResponse < TencentCloud::Common::AbstractModel
|
14114
|
+
# @param Result: 查询汇率结果
|
14115
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.QueryExchangerateResult`
|
14116
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
14117
|
+
# @type RequestId: String
|
14118
|
+
|
14119
|
+
attr_accessor :Result, :RequestId
|
14120
|
+
|
14121
|
+
def initialize(result=nil, requestid=nil)
|
14122
|
+
@Result = result
|
14123
|
+
@RequestId = requestid
|
14124
|
+
end
|
14125
|
+
|
14126
|
+
def deserialize(params)
|
14127
|
+
unless params['Result'].nil?
|
14128
|
+
@Result = QueryExchangerateResult.new
|
14129
|
+
@Result.deserialize(params['Result'])
|
14130
|
+
end
|
14131
|
+
@RequestId = params['RequestId']
|
14132
|
+
end
|
14133
|
+
end
|
14134
|
+
|
14135
|
+
# 查询汇率数据
|
14136
|
+
class QueryExchangerateData < TencentCloud::Common::AbstractModel
|
14137
|
+
# @param Rate: 汇率
|
14138
|
+
# @type Rate: String
|
14139
|
+
# @param SourceCurrency: 源币种
|
14140
|
+
# @type SourceCurrency: String
|
14141
|
+
# @param TargetCurrency: 目的币种
|
14142
|
+
# @type TargetCurrency: String
|
14143
|
+
# @param RateTime: 汇率时间
|
14144
|
+
# @type RateTime: String
|
14145
|
+
# @param BaseCurrency: 基准币种
|
14146
|
+
# @type BaseCurrency: String
|
14147
|
+
|
14148
|
+
attr_accessor :Rate, :SourceCurrency, :TargetCurrency, :RateTime, :BaseCurrency
|
14149
|
+
|
14150
|
+
def initialize(rate=nil, sourcecurrency=nil, targetcurrency=nil, ratetime=nil, basecurrency=nil)
|
14151
|
+
@Rate = rate
|
14152
|
+
@SourceCurrency = sourcecurrency
|
14153
|
+
@TargetCurrency = targetcurrency
|
14154
|
+
@RateTime = ratetime
|
14155
|
+
@BaseCurrency = basecurrency
|
14156
|
+
end
|
14157
|
+
|
14158
|
+
def deserialize(params)
|
14159
|
+
@Rate = params['Rate']
|
14160
|
+
@SourceCurrency = params['SourceCurrency']
|
14161
|
+
@TargetCurrency = params['TargetCurrency']
|
14162
|
+
@RateTime = params['RateTime']
|
14163
|
+
@BaseCurrency = params['BaseCurrency']
|
14164
|
+
end
|
14165
|
+
end
|
14166
|
+
|
14167
|
+
# 查询汇率结果
|
14168
|
+
class QueryExchangerateResult < TencentCloud::Common::AbstractModel
|
14169
|
+
# @param Code: 错误码
|
14170
|
+
# @type Code: String
|
14171
|
+
# @param Data: 查询汇率数据数组
|
14172
|
+
# @type Data: Array
|
14173
|
+
|
14174
|
+
attr_accessor :Code, :Data
|
14175
|
+
|
14176
|
+
def initialize(code=nil, data=nil)
|
14177
|
+
@Code = code
|
14178
|
+
@Data = data
|
14179
|
+
end
|
14180
|
+
|
14181
|
+
def deserialize(params)
|
14182
|
+
@Code = params['Code']
|
14183
|
+
unless params['Data'].nil?
|
14184
|
+
@Data = []
|
14185
|
+
params['Data'].each do |i|
|
14186
|
+
queryexchangeratedata_tmp = QueryExchangerateData.new
|
14187
|
+
queryexchangeratedata_tmp.deserialize(i)
|
14188
|
+
@Data << queryexchangeratedata_tmp
|
14189
|
+
end
|
14190
|
+
end
|
14191
|
+
end
|
14192
|
+
end
|
14193
|
+
|
14194
|
+
# 查询第三方电子记账本余额返回值
|
14195
|
+
class QueryExternalAccountBookResult < TencentCloud::Common::AbstractModel
|
14196
|
+
# @param ChannelAccountBookId: 渠道记账本ID
|
14197
|
+
# @type ChannelAccountBookId: String
|
14198
|
+
# @param AvailableBalance: 可用余额。
|
14199
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14200
|
+
# @type AvailableBalance: String
|
14201
|
+
# @param CollectMoneyAccountInfo: 电子记账本对外收款的账户信息。为JSON格式字符串(成功状态下返回)。详情见附录-复杂类型。
|
14202
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14203
|
+
# @type CollectMoneyAccountInfo: String
|
14204
|
+
|
14205
|
+
attr_accessor :ChannelAccountBookId, :AvailableBalance, :CollectMoneyAccountInfo
|
14206
|
+
|
14207
|
+
def initialize(channelaccountbookid=nil, availablebalance=nil, collectmoneyaccountinfo=nil)
|
14208
|
+
@ChannelAccountBookId = channelaccountbookid
|
14209
|
+
@AvailableBalance = availablebalance
|
14210
|
+
@CollectMoneyAccountInfo = collectmoneyaccountinfo
|
14211
|
+
end
|
14212
|
+
|
14213
|
+
def deserialize(params)
|
14214
|
+
@ChannelAccountBookId = params['ChannelAccountBookId']
|
14215
|
+
@AvailableBalance = params['AvailableBalance']
|
14216
|
+
@CollectMoneyAccountInfo = params['CollectMoneyAccountInfo']
|
14217
|
+
end
|
14218
|
+
end
|
14219
|
+
|
14220
|
+
# QueryFlexAmountBeforeTax请求参数结构体
|
14221
|
+
class QueryFlexAmountBeforeTaxRequest < TencentCloud::Common::AbstractModel
|
14222
|
+
# @param PayeeId: 收款用户ID
|
14223
|
+
# @type PayeeId: String
|
14224
|
+
# @param IncomeType: 收入类型
|
14225
|
+
# LABOR:劳务所得
|
14226
|
+
# OCCASION:偶然所得
|
14227
|
+
# @type IncomeType: String
|
14228
|
+
# @param AmountAfterTax: 税后金额
|
14229
|
+
# @type AmountAfterTax: String
|
14230
|
+
|
14231
|
+
attr_accessor :PayeeId, :IncomeType, :AmountAfterTax
|
14232
|
+
|
14233
|
+
def initialize(payeeid=nil, incometype=nil, amountaftertax=nil)
|
14234
|
+
@PayeeId = payeeid
|
14235
|
+
@IncomeType = incometype
|
14236
|
+
@AmountAfterTax = amountaftertax
|
14237
|
+
end
|
14238
|
+
|
14239
|
+
def deserialize(params)
|
14240
|
+
@PayeeId = params['PayeeId']
|
14241
|
+
@IncomeType = params['IncomeType']
|
14242
|
+
@AmountAfterTax = params['AmountAfterTax']
|
14243
|
+
end
|
14244
|
+
end
|
14245
|
+
|
14246
|
+
# QueryFlexAmountBeforeTax返回参数结构体
|
14247
|
+
class QueryFlexAmountBeforeTaxResponse < TencentCloud::Common::AbstractModel
|
14248
|
+
# @param ErrCode: 错误码。SUCCESS为成功,其他为失败
|
14249
|
+
# @type ErrCode: String
|
14250
|
+
# @param ErrMessage: 错误消息
|
14251
|
+
# @type ErrMessage: String
|
14252
|
+
# @param Result: 返回结果
|
14253
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14254
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.AmountBeforeTaxResult`
|
14255
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
14256
|
+
# @type RequestId: String
|
14257
|
+
|
14258
|
+
attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
|
14259
|
+
|
14260
|
+
def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
|
14261
|
+
@ErrCode = errcode
|
14262
|
+
@ErrMessage = errmessage
|
14263
|
+
@Result = result
|
14264
|
+
@RequestId = requestid
|
14265
|
+
end
|
14266
|
+
|
14267
|
+
def deserialize(params)
|
14268
|
+
@ErrCode = params['ErrCode']
|
14269
|
+
@ErrMessage = params['ErrMessage']
|
14270
|
+
unless params['Result'].nil?
|
14271
|
+
@Result = AmountBeforeTaxResult.new
|
14272
|
+
@Result.deserialize(params['Result'])
|
14273
|
+
end
|
14274
|
+
@RequestId = params['RequestId']
|
14275
|
+
end
|
14276
|
+
end
|
14277
|
+
|
14278
|
+
# QueryFlexFreezeOrderList请求参数结构体
|
14279
|
+
class QueryFlexFreezeOrderListRequest < TencentCloud::Common::AbstractModel
|
14280
|
+
# @param PayeeId: 收款用户ID
|
14281
|
+
# @type PayeeId: String
|
14282
|
+
# @param OperationType: 操作类型
|
14283
|
+
# FREEZE:冻结
|
14284
|
+
# UNFREEZE:解冻
|
14285
|
+
# @type OperationType: String
|
14286
|
+
# @param StartTime: 开始时间,格式"yyyy-MM-dd hh:mm:ss"
|
14287
|
+
# @type StartTime: String
|
14288
|
+
# @param EndTime: 结束时间,格式"yyyy-MM-dd hh:mm:ss"
|
14289
|
+
# @type EndTime: String
|
14290
|
+
# @param PageNumber: 分页
|
14291
|
+
# @type PageNumber: :class:`Tencentcloud::Cpdp.v20190820.models.Paging`
|
14292
|
+
|
14293
|
+
attr_accessor :PayeeId, :OperationType, :StartTime, :EndTime, :PageNumber
|
14294
|
+
|
14295
|
+
def initialize(payeeid=nil, operationtype=nil, starttime=nil, endtime=nil, pagenumber=nil)
|
14296
|
+
@PayeeId = payeeid
|
14297
|
+
@OperationType = operationtype
|
14298
|
+
@StartTime = starttime
|
14299
|
+
@EndTime = endtime
|
14300
|
+
@PageNumber = pagenumber
|
14301
|
+
end
|
14302
|
+
|
14303
|
+
def deserialize(params)
|
14304
|
+
@PayeeId = params['PayeeId']
|
14305
|
+
@OperationType = params['OperationType']
|
14306
|
+
@StartTime = params['StartTime']
|
14307
|
+
@EndTime = params['EndTime']
|
14308
|
+
unless params['PageNumber'].nil?
|
14309
|
+
@PageNumber = Paging.new
|
14310
|
+
@PageNumber.deserialize(params['PageNumber'])
|
14311
|
+
end
|
14312
|
+
end
|
14313
|
+
end
|
14314
|
+
|
14315
|
+
# QueryFlexFreezeOrderList返回参数结构体
|
14316
|
+
class QueryFlexFreezeOrderListResponse < TencentCloud::Common::AbstractModel
|
14317
|
+
# @param ErrCode: 错误码。SUCCESS为成功,其他为失败
|
14318
|
+
# @type ErrCode: String
|
14319
|
+
# @param ErrMessage: 错误消息
|
14320
|
+
# @type ErrMessage: String
|
14321
|
+
# @param Result: 返回结果
|
14322
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14323
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.FreezeOrders`
|
14324
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
14325
|
+
# @type RequestId: String
|
14326
|
+
|
14327
|
+
attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
|
14328
|
+
|
14329
|
+
def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
|
14330
|
+
@ErrCode = errcode
|
14331
|
+
@ErrMessage = errmessage
|
14332
|
+
@Result = result
|
14333
|
+
@RequestId = requestid
|
14334
|
+
end
|
14335
|
+
|
14336
|
+
def deserialize(params)
|
14337
|
+
@ErrCode = params['ErrCode']
|
14338
|
+
@ErrMessage = params['ErrMessage']
|
14339
|
+
unless params['Result'].nil?
|
14340
|
+
@Result = FreezeOrders.new
|
14341
|
+
@Result.deserialize(params['Result'])
|
14342
|
+
end
|
14343
|
+
@RequestId = params['RequestId']
|
14344
|
+
end
|
14345
|
+
end
|
14346
|
+
|
14347
|
+
# QueryFlexPayeeAccountBalance请求参数结构体
|
14348
|
+
class QueryFlexPayeeAccountBalanceRequest < TencentCloud::Common::AbstractModel
|
14349
|
+
# @param PayeeId: 收款用户ID
|
14350
|
+
# @type PayeeId: String
|
14351
|
+
# @param IncomeType: 收入类型
|
14352
|
+
# LABOR:劳务所得
|
14353
|
+
# OCCASION:偶然所得
|
14354
|
+
# @type IncomeType: String
|
14355
|
+
|
14356
|
+
attr_accessor :PayeeId, :IncomeType
|
14357
|
+
|
14358
|
+
def initialize(payeeid=nil, incometype=nil)
|
14359
|
+
@PayeeId = payeeid
|
14360
|
+
@IncomeType = incometype
|
14361
|
+
end
|
14362
|
+
|
14363
|
+
def deserialize(params)
|
14364
|
+
@PayeeId = params['PayeeId']
|
14365
|
+
@IncomeType = params['IncomeType']
|
14366
|
+
end
|
14367
|
+
end
|
14368
|
+
|
14369
|
+
# QueryFlexPayeeAccountBalance返回参数结构体
|
14370
|
+
class QueryFlexPayeeAccountBalanceResponse < TencentCloud::Common::AbstractModel
|
14371
|
+
# @param ErrCode: 错误码。SUCCESS为成功,其他为失败
|
14372
|
+
# @type ErrCode: String
|
14373
|
+
# @param ErrMessage: 错误消息
|
14374
|
+
# @type ErrMessage: String
|
14375
|
+
# @param Result: 返回结果
|
14376
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14377
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.PayeeAccountBalanceResult`
|
14378
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
14379
|
+
# @type RequestId: String
|
14380
|
+
|
14381
|
+
attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
|
14382
|
+
|
14383
|
+
def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
|
14384
|
+
@ErrCode = errcode
|
14385
|
+
@ErrMessage = errmessage
|
14386
|
+
@Result = result
|
14387
|
+
@RequestId = requestid
|
14388
|
+
end
|
14389
|
+
|
14390
|
+
def deserialize(params)
|
14391
|
+
@ErrCode = params['ErrCode']
|
14392
|
+
@ErrMessage = params['ErrMessage']
|
14393
|
+
unless params['Result'].nil?
|
14394
|
+
@Result = PayeeAccountBalanceResult.new
|
14395
|
+
@Result.deserialize(params['Result'])
|
14396
|
+
end
|
14397
|
+
@RequestId = params['RequestId']
|
14398
|
+
end
|
14399
|
+
end
|
14400
|
+
|
14401
|
+
# QueryFlexPayeeAccountInfo请求参数结构体
|
14402
|
+
class QueryFlexPayeeAccountInfoRequest < TencentCloud::Common::AbstractModel
|
14403
|
+
# @param PayeeId: 收款用户ID
|
14404
|
+
# @type PayeeId: String
|
14405
|
+
# @param OutUserId: 外部用户ID
|
14406
|
+
# @type OutUserId: String
|
14407
|
+
|
14408
|
+
attr_accessor :PayeeId, :OutUserId
|
14409
|
+
|
14410
|
+
def initialize(payeeid=nil, outuserid=nil)
|
14411
|
+
@PayeeId = payeeid
|
14412
|
+
@OutUserId = outuserid
|
14413
|
+
end
|
14414
|
+
|
14415
|
+
def deserialize(params)
|
14416
|
+
@PayeeId = params['PayeeId']
|
14417
|
+
@OutUserId = params['OutUserId']
|
14418
|
+
end
|
14419
|
+
end
|
14420
|
+
|
14421
|
+
# QueryFlexPayeeAccountInfo返回参数结构体
|
14422
|
+
class QueryFlexPayeeAccountInfoResponse < TencentCloud::Common::AbstractModel
|
14423
|
+
# @param ErrCode: 错误码。SUCCESS为成功,其他为失败
|
14424
|
+
# @type ErrCode: String
|
14425
|
+
# @param ErrMessage: 错误消息
|
14426
|
+
# @type ErrMessage: String
|
14427
|
+
# @param Result: 返回结果
|
14428
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14429
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.PayeeAccountInfoResult`
|
14430
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
14431
|
+
# @type RequestId: String
|
14432
|
+
|
14433
|
+
attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
|
14434
|
+
|
14435
|
+
def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
|
14436
|
+
@ErrCode = errcode
|
14437
|
+
@ErrMessage = errmessage
|
14438
|
+
@Result = result
|
14439
|
+
@RequestId = requestid
|
14440
|
+
end
|
14441
|
+
|
14442
|
+
def deserialize(params)
|
14443
|
+
@ErrCode = params['ErrCode']
|
14444
|
+
@ErrMessage = params['ErrMessage']
|
14445
|
+
unless params['Result'].nil?
|
14446
|
+
@Result = PayeeAccountInfoResult.new
|
14447
|
+
@Result.deserialize(params['Result'])
|
14448
|
+
end
|
14449
|
+
@RequestId = params['RequestId']
|
14450
|
+
end
|
14451
|
+
end
|
14452
|
+
|
14453
|
+
# QueryFlexPayeeAccountList请求参数结构体
|
14454
|
+
class QueryFlexPayeeAccountListRequest < TencentCloud::Common::AbstractModel
|
14455
|
+
# @param PropertyInfo: 账户属性信息
|
14456
|
+
# @type PropertyInfo: :class:`Tencentcloud::Cpdp.v20190820.models.PayeeAccountPropertyInfo`
|
14457
|
+
# @param StartTime: 开始时间
|
14458
|
+
# @type StartTime: String
|
14459
|
+
# @param EndTime: 结束时间
|
14460
|
+
# @type EndTime: String
|
14461
|
+
# @param PageNumber: 分页
|
14462
|
+
# @type PageNumber: :class:`Tencentcloud::Cpdp.v20190820.models.Paging`
|
14463
|
+
|
14464
|
+
attr_accessor :PropertyInfo, :StartTime, :EndTime, :PageNumber
|
14465
|
+
|
14466
|
+
def initialize(propertyinfo=nil, starttime=nil, endtime=nil, pagenumber=nil)
|
14467
|
+
@PropertyInfo = propertyinfo
|
14468
|
+
@StartTime = starttime
|
14469
|
+
@EndTime = endtime
|
14470
|
+
@PageNumber = pagenumber
|
14471
|
+
end
|
14472
|
+
|
14473
|
+
def deserialize(params)
|
14474
|
+
unless params['PropertyInfo'].nil?
|
14475
|
+
@PropertyInfo = PayeeAccountPropertyInfo.new
|
14476
|
+
@PropertyInfo.deserialize(params['PropertyInfo'])
|
14477
|
+
end
|
14478
|
+
@StartTime = params['StartTime']
|
14479
|
+
@EndTime = params['EndTime']
|
14480
|
+
unless params['PageNumber'].nil?
|
14481
|
+
@PageNumber = Paging.new
|
14482
|
+
@PageNumber.deserialize(params['PageNumber'])
|
14483
|
+
end
|
14484
|
+
end
|
14485
|
+
end
|
14486
|
+
|
14487
|
+
# QueryFlexPayeeAccountList返回参数结构体
|
14488
|
+
class QueryFlexPayeeAccountListResponse < TencentCloud::Common::AbstractModel
|
14489
|
+
# @param ErrCode: 错误码。SUCCESS为成功,其他为失败
|
14490
|
+
# @type ErrCode: String
|
14491
|
+
# @param ErrMessage: 错误消息
|
14492
|
+
# @type ErrMessage: String
|
14493
|
+
# @param Result: 返回结果
|
14494
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14495
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.PayeeAccountInfos`
|
14496
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
14497
|
+
# @type RequestId: String
|
14498
|
+
|
14499
|
+
attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
|
14500
|
+
|
14501
|
+
def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
|
14502
|
+
@ErrCode = errcode
|
14503
|
+
@ErrMessage = errmessage
|
14504
|
+
@Result = result
|
14505
|
+
@RequestId = requestid
|
14506
|
+
end
|
14507
|
+
|
14508
|
+
def deserialize(params)
|
14509
|
+
@ErrCode = params['ErrCode']
|
14510
|
+
@ErrMessage = params['ErrMessage']
|
14511
|
+
unless params['Result'].nil?
|
14512
|
+
@Result = PayeeAccountInfos.new
|
14513
|
+
@Result.deserialize(params['Result'])
|
14514
|
+
end
|
14515
|
+
@RequestId = params['RequestId']
|
14516
|
+
end
|
14517
|
+
end
|
14518
|
+
|
14519
|
+
# QueryFlexPayeeInfo请求参数结构体
|
14520
|
+
class QueryFlexPayeeInfoRequest < TencentCloud::Common::AbstractModel
|
14521
|
+
# @param PayeeId: 收款用户ID
|
14522
|
+
# @type PayeeId: String
|
14523
|
+
# @param OutUserId: 外部用户ID
|
14524
|
+
# @type OutUserId: String
|
14525
|
+
|
14526
|
+
attr_accessor :PayeeId, :OutUserId
|
14527
|
+
|
14528
|
+
def initialize(payeeid=nil, outuserid=nil)
|
14529
|
+
@PayeeId = payeeid
|
14530
|
+
@OutUserId = outuserid
|
14531
|
+
end
|
14532
|
+
|
14533
|
+
def deserialize(params)
|
14534
|
+
@PayeeId = params['PayeeId']
|
14535
|
+
@OutUserId = params['OutUserId']
|
14536
|
+
end
|
14537
|
+
end
|
14538
|
+
|
14539
|
+
# QueryFlexPayeeInfo返回参数结构体
|
14540
|
+
class QueryFlexPayeeInfoResponse < TencentCloud::Common::AbstractModel
|
14541
|
+
# @param ErrCode: 错误码。SUCCESS为成功,其他为失败
|
14542
|
+
# @type ErrCode: String
|
14543
|
+
# @param ErrMessage: 错误消息
|
14544
|
+
# @type ErrMessage: String
|
14545
|
+
# @param Result: 返回结果
|
14546
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14547
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.PayeeInfoResult`
|
14548
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
14549
|
+
# @type RequestId: String
|
14550
|
+
|
14551
|
+
attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
|
14552
|
+
|
14553
|
+
def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
|
14554
|
+
@ErrCode = errcode
|
14555
|
+
@ErrMessage = errmessage
|
14556
|
+
@Result = result
|
14557
|
+
@RequestId = requestid
|
14558
|
+
end
|
14559
|
+
|
14560
|
+
def deserialize(params)
|
14561
|
+
@ErrCode = params['ErrCode']
|
14562
|
+
@ErrMessage = params['ErrMessage']
|
14563
|
+
unless params['Result'].nil?
|
14564
|
+
@Result = PayeeInfoResult.new
|
14565
|
+
@Result.deserialize(params['Result'])
|
14566
|
+
end
|
14567
|
+
@RequestId = params['RequestId']
|
14568
|
+
end
|
14569
|
+
end
|
14570
|
+
|
14571
|
+
# QueryFlexPaymentOrderList请求参数结构体
|
14572
|
+
class QueryFlexPaymentOrderListRequest < TencentCloud::Common::AbstractModel
|
14573
|
+
# @param PayeeId: 收款用户ID
|
14574
|
+
# @type PayeeId: String
|
14575
|
+
# @param StartTime: 开始时间,格式"yyyy-MM-dd hh:mm:ss"
|
14576
|
+
# @type StartTime: String
|
14577
|
+
# @param EndTime: 结束时间,格式"yyyy-MM-dd hh:mm:ss"
|
14578
|
+
# @type EndTime: String
|
14579
|
+
# @param PageNumber: 分页
|
13021
14580
|
# @type PageNumber: :class:`Tencentcloud::Cpdp.v20190820.models.Paging`
|
13022
14581
|
|
13023
|
-
attr_accessor :
|
14582
|
+
attr_accessor :PayeeId, :StartTime, :EndTime, :PageNumber
|
13024
14583
|
|
13025
|
-
def initialize(
|
13026
|
-
@
|
13027
|
-
@
|
14584
|
+
def initialize(payeeid=nil, starttime=nil, endtime=nil, pagenumber=nil)
|
14585
|
+
@PayeeId = payeeid
|
14586
|
+
@StartTime = starttime
|
14587
|
+
@EndTime = endtime
|
13028
14588
|
@PageNumber = pagenumber
|
13029
14589
|
end
|
13030
14590
|
|
13031
14591
|
def deserialize(params)
|
13032
|
-
@
|
13033
|
-
@
|
14592
|
+
@PayeeId = params['PayeeId']
|
14593
|
+
@StartTime = params['StartTime']
|
14594
|
+
@EndTime = params['EndTime']
|
13034
14595
|
unless params['PageNumber'].nil?
|
13035
14596
|
@PageNumber = Paging.new
|
13036
14597
|
@PageNumber.deserialize(params['PageNumber'])
|
@@ -13038,15 +14599,15 @@ module TencentCloud
|
|
13038
14599
|
end
|
13039
14600
|
end
|
13040
14601
|
|
13041
|
-
#
|
13042
|
-
class
|
13043
|
-
# @param ErrCode: 错误码。
|
14602
|
+
# QueryFlexPaymentOrderList返回参数结构体
|
14603
|
+
class QueryFlexPaymentOrderListResponse < TencentCloud::Common::AbstractModel
|
14604
|
+
# @param ErrCode: 错误码。SUCCESS为成功,其他为失败
|
13044
14605
|
# @type ErrCode: String
|
13045
|
-
# @param ErrMessage:
|
14606
|
+
# @param ErrMessage: 错误消息
|
13046
14607
|
# @type ErrMessage: String
|
13047
|
-
# @param Result:
|
14608
|
+
# @param Result: 返回结果
|
13048
14609
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
13049
|
-
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.
|
14610
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.PaymentOrders`
|
13050
14611
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
13051
14612
|
# @type RequestId: String
|
13052
14613
|
|
@@ -13063,170 +14624,125 @@ module TencentCloud
|
|
13063
14624
|
@ErrCode = params['ErrCode']
|
13064
14625
|
@ErrMessage = params['ErrMessage']
|
13065
14626
|
unless params['Result'].nil?
|
13066
|
-
@Result =
|
14627
|
+
@Result = PaymentOrders.new
|
13067
14628
|
@Result.deserialize(params['Result'])
|
13068
14629
|
end
|
13069
14630
|
@RequestId = params['RequestId']
|
13070
14631
|
end
|
13071
14632
|
end
|
13072
14633
|
|
13073
|
-
#
|
13074
|
-
class
|
13075
|
-
# @param
|
13076
|
-
# @type
|
13077
|
-
# @param
|
13078
|
-
#
|
13079
|
-
# @type Data: Array
|
13080
|
-
|
13081
|
-
attr_accessor :Count, :Data
|
13082
|
-
|
13083
|
-
def initialize(count=nil, data=nil)
|
13084
|
-
@Count = count
|
13085
|
-
@Data = data
|
13086
|
-
end
|
13087
|
-
|
13088
|
-
def deserialize(params)
|
13089
|
-
@Count = params['Count']
|
13090
|
-
unless params['Data'].nil?
|
13091
|
-
@Data = []
|
13092
|
-
params['Data'].each do |i|
|
13093
|
-
queryexceedinginfodata_tmp = QueryExceedingInfoData.new
|
13094
|
-
queryexceedinginfodata_tmp.deserialize(i)
|
13095
|
-
@Data << queryexceedinginfodata_tmp
|
13096
|
-
end
|
13097
|
-
end
|
13098
|
-
end
|
13099
|
-
end
|
13100
|
-
|
13101
|
-
# QueryExchangeRate请求参数结构体
|
13102
|
-
class QueryExchangeRateRequest < TencentCloud::Common::AbstractModel
|
13103
|
-
# @param SourceCurrency: 源币种 (默认CNY)
|
13104
|
-
# @type SourceCurrency: String
|
13105
|
-
# @param TargetCurrency: 目的币种 (见常见问题-汇出币种)
|
13106
|
-
# @type TargetCurrency: String
|
13107
|
-
# @param Profile: 接入环境。沙箱环境填sandbox
|
13108
|
-
# @type Profile: String
|
14634
|
+
# QueryFlexPaymentOrderStatus请求参数结构体
|
14635
|
+
class QueryFlexPaymentOrderStatusRequest < TencentCloud::Common::AbstractModel
|
14636
|
+
# @param OutOrderId: 外部订单ID
|
14637
|
+
# @type OutOrderId: String
|
14638
|
+
# @param OrderId: 订单ID
|
14639
|
+
# @type OrderId: String
|
13109
14640
|
|
13110
|
-
attr_accessor :
|
14641
|
+
attr_accessor :OutOrderId, :OrderId
|
13111
14642
|
|
13112
|
-
def initialize(
|
13113
|
-
@
|
13114
|
-
@
|
13115
|
-
@Profile = profile
|
14643
|
+
def initialize(outorderid=nil, orderid=nil)
|
14644
|
+
@OutOrderId = outorderid
|
14645
|
+
@OrderId = orderid
|
13116
14646
|
end
|
13117
14647
|
|
13118
14648
|
def deserialize(params)
|
13119
|
-
@
|
13120
|
-
@
|
13121
|
-
@Profile = params['Profile']
|
14649
|
+
@OutOrderId = params['OutOrderId']
|
14650
|
+
@OrderId = params['OrderId']
|
13122
14651
|
end
|
13123
14652
|
end
|
13124
14653
|
|
13125
|
-
#
|
13126
|
-
class
|
13127
|
-
# @param
|
13128
|
-
# @type
|
14654
|
+
# QueryFlexPaymentOrderStatus返回参数结构体
|
14655
|
+
class QueryFlexPaymentOrderStatusResponse < TencentCloud::Common::AbstractModel
|
14656
|
+
# @param ErrCode: 错误码。SUCCESS为成功,其他为失败
|
14657
|
+
# @type ErrCode: String
|
14658
|
+
# @param ErrMessage: 错误消息
|
14659
|
+
# @type ErrMessage: String
|
14660
|
+
# @param Result: 返回结果
|
14661
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
14662
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.PaymentOrderStatusResult`
|
13129
14663
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
13130
14664
|
# @type RequestId: String
|
13131
14665
|
|
13132
|
-
attr_accessor :Result, :RequestId
|
14666
|
+
attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
|
13133
14667
|
|
13134
|
-
def initialize(result=nil, requestid=nil)
|
14668
|
+
def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
|
14669
|
+
@ErrCode = errcode
|
14670
|
+
@ErrMessage = errmessage
|
13135
14671
|
@Result = result
|
13136
14672
|
@RequestId = requestid
|
13137
14673
|
end
|
13138
14674
|
|
13139
14675
|
def deserialize(params)
|
14676
|
+
@ErrCode = params['ErrCode']
|
14677
|
+
@ErrMessage = params['ErrMessage']
|
13140
14678
|
unless params['Result'].nil?
|
13141
|
-
@Result =
|
14679
|
+
@Result = PaymentOrderStatusResult.new
|
13142
14680
|
@Result.deserialize(params['Result'])
|
13143
14681
|
end
|
13144
14682
|
@RequestId = params['RequestId']
|
13145
14683
|
end
|
13146
14684
|
end
|
13147
14685
|
|
13148
|
-
#
|
13149
|
-
class
|
13150
|
-
# @param
|
13151
|
-
# @type
|
13152
|
-
# @param
|
13153
|
-
# @type
|
13154
|
-
# @param
|
13155
|
-
# @type
|
13156
|
-
# @param
|
13157
|
-
# @type
|
13158
|
-
# @param BaseCurrency: 基准币种
|
13159
|
-
# @type BaseCurrency: String
|
13160
|
-
|
13161
|
-
attr_accessor :Rate, :SourceCurrency, :TargetCurrency, :RateTime, :BaseCurrency
|
13162
|
-
|
13163
|
-
def initialize(rate=nil, sourcecurrency=nil, targetcurrency=nil, ratetime=nil, basecurrency=nil)
|
13164
|
-
@Rate = rate
|
13165
|
-
@SourceCurrency = sourcecurrency
|
13166
|
-
@TargetCurrency = targetcurrency
|
13167
|
-
@RateTime = ratetime
|
13168
|
-
@BaseCurrency = basecurrency
|
13169
|
-
end
|
13170
|
-
|
13171
|
-
def deserialize(params)
|
13172
|
-
@Rate = params['Rate']
|
13173
|
-
@SourceCurrency = params['SourceCurrency']
|
13174
|
-
@TargetCurrency = params['TargetCurrency']
|
13175
|
-
@RateTime = params['RateTime']
|
13176
|
-
@BaseCurrency = params['BaseCurrency']
|
13177
|
-
end
|
13178
|
-
end
|
13179
|
-
|
13180
|
-
# 查询汇率结果
|
13181
|
-
class QueryExchangerateResult < TencentCloud::Common::AbstractModel
|
13182
|
-
# @param Code: 错误码
|
13183
|
-
# @type Code: String
|
13184
|
-
# @param Data: 查询汇率数据数组
|
13185
|
-
# @type Data: Array
|
14686
|
+
# QueryFlexSettlementOrderList请求参数结构体
|
14687
|
+
class QueryFlexSettlementOrderListRequest < TencentCloud::Common::AbstractModel
|
14688
|
+
# @param PayeeId: 收款用户ID
|
14689
|
+
# @type PayeeId: String
|
14690
|
+
# @param StartTime: 开始时间,格式"yyyy-MM-dd hh:mm:ss"
|
14691
|
+
# @type StartTime: String
|
14692
|
+
# @param EndTime: 结束时间,格式"yyyy-MM-dd hh:mm:ss"
|
14693
|
+
# @type EndTime: String
|
14694
|
+
# @param PageNumber: 分页
|
14695
|
+
# @type PageNumber: :class:`Tencentcloud::Cpdp.v20190820.models.Paging`
|
13186
14696
|
|
13187
|
-
attr_accessor :
|
14697
|
+
attr_accessor :PayeeId, :StartTime, :EndTime, :PageNumber
|
13188
14698
|
|
13189
|
-
def initialize(
|
13190
|
-
@
|
13191
|
-
@
|
14699
|
+
def initialize(payeeid=nil, starttime=nil, endtime=nil, pagenumber=nil)
|
14700
|
+
@PayeeId = payeeid
|
14701
|
+
@StartTime = starttime
|
14702
|
+
@EndTime = endtime
|
14703
|
+
@PageNumber = pagenumber
|
13192
14704
|
end
|
13193
14705
|
|
13194
14706
|
def deserialize(params)
|
13195
|
-
@
|
13196
|
-
|
13197
|
-
|
13198
|
-
|
13199
|
-
|
13200
|
-
|
13201
|
-
@Data << queryexchangeratedata_tmp
|
13202
|
-
end
|
14707
|
+
@PayeeId = params['PayeeId']
|
14708
|
+
@StartTime = params['StartTime']
|
14709
|
+
@EndTime = params['EndTime']
|
14710
|
+
unless params['PageNumber'].nil?
|
14711
|
+
@PageNumber = Paging.new
|
14712
|
+
@PageNumber.deserialize(params['PageNumber'])
|
13203
14713
|
end
|
13204
14714
|
end
|
13205
14715
|
end
|
13206
14716
|
|
13207
|
-
#
|
13208
|
-
class
|
13209
|
-
# @param
|
13210
|
-
# @type
|
13211
|
-
# @param
|
13212
|
-
#
|
13213
|
-
# @
|
13214
|
-
# @param CollectMoneyAccountInfo: 电子记账本对外收款的账户信息。为JSON格式字符串(成功状态下返回)。详情见附录-复杂类型。
|
14717
|
+
# QueryFlexSettlementOrderList返回参数结构体
|
14718
|
+
class QueryFlexSettlementOrderListResponse < TencentCloud::Common::AbstractModel
|
14719
|
+
# @param ErrCode: 错误码。SUCCESS为成功,其他为失败
|
14720
|
+
# @type ErrCode: String
|
14721
|
+
# @param ErrMessage: 错误消息
|
14722
|
+
# @type ErrMessage: String
|
14723
|
+
# @param Result: 返回结果
|
13215
14724
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
13216
|
-
# @type
|
14725
|
+
# @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.SettlementOrders`
|
14726
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
14727
|
+
# @type RequestId: String
|
13217
14728
|
|
13218
|
-
attr_accessor :
|
14729
|
+
attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
|
13219
14730
|
|
13220
|
-
def initialize(
|
13221
|
-
@
|
13222
|
-
@
|
13223
|
-
@
|
14731
|
+
def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
|
14732
|
+
@ErrCode = errcode
|
14733
|
+
@ErrMessage = errmessage
|
14734
|
+
@Result = result
|
14735
|
+
@RequestId = requestid
|
13224
14736
|
end
|
13225
14737
|
|
13226
14738
|
def deserialize(params)
|
13227
|
-
@
|
13228
|
-
@
|
13229
|
-
|
14739
|
+
@ErrCode = params['ErrCode']
|
14740
|
+
@ErrMessage = params['ErrMessage']
|
14741
|
+
unless params['Result'].nil?
|
14742
|
+
@Result = SettlementOrders.new
|
14743
|
+
@Result.deserialize(params['Result'])
|
14744
|
+
end
|
14745
|
+
@RequestId = params['RequestId']
|
13230
14746
|
end
|
13231
14747
|
end
|
13232
14748
|
|
@@ -19660,6 +21176,101 @@ module TencentCloud
|
|
19660
21176
|
end
|
19661
21177
|
end
|
19662
21178
|
|
21179
|
+
# 结算订单结果
|
21180
|
+
class SettlementOrderResult < TencentCloud::Common::AbstractModel
|
21181
|
+
# @param IncomeType: 收入类型
|
21182
|
+
# LABOR:劳务所得
|
21183
|
+
# OCCASION:偶然所得
|
21184
|
+
# @type IncomeType: String
|
21185
|
+
# @param AmountBeforeTax: 税前金额
|
21186
|
+
# @type AmountBeforeTax: String
|
21187
|
+
# @param AmountAfterTax: 税后金额
|
21188
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21189
|
+
# @type AmountAfterTax: String
|
21190
|
+
# @param Tax: 税金
|
21191
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21192
|
+
# @type Tax: String
|
21193
|
+
# @param OutOrderId: 外部订单ID
|
21194
|
+
# @type OutOrderId: String
|
21195
|
+
# @param OrderId: 订单ID
|
21196
|
+
# @type OrderId: String
|
21197
|
+
# @param InitiateTime: 发起时间
|
21198
|
+
# @type InitiateTime: String
|
21199
|
+
# @param FinishTime: 完成时间
|
21200
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21201
|
+
# @type FinishTime: String
|
21202
|
+
# @param Status: 状态
|
21203
|
+
# ACCEPTED:已受理
|
21204
|
+
# ACCOUNTED:已记账
|
21205
|
+
# SUCCEED:已成功
|
21206
|
+
# FAILED:已失败
|
21207
|
+
# @type Status: String
|
21208
|
+
# @param StatusDesc: 状态描述
|
21209
|
+
# @type StatusDesc: String
|
21210
|
+
# @param Remark: 备注
|
21211
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21212
|
+
# @type Remark: String
|
21213
|
+
|
21214
|
+
attr_accessor :IncomeType, :AmountBeforeTax, :AmountAfterTax, :Tax, :OutOrderId, :OrderId, :InitiateTime, :FinishTime, :Status, :StatusDesc, :Remark
|
21215
|
+
|
21216
|
+
def initialize(incometype=nil, amountbeforetax=nil, amountaftertax=nil, tax=nil, outorderid=nil, orderid=nil, initiatetime=nil, finishtime=nil, status=nil, statusdesc=nil, remark=nil)
|
21217
|
+
@IncomeType = incometype
|
21218
|
+
@AmountBeforeTax = amountbeforetax
|
21219
|
+
@AmountAfterTax = amountaftertax
|
21220
|
+
@Tax = tax
|
21221
|
+
@OutOrderId = outorderid
|
21222
|
+
@OrderId = orderid
|
21223
|
+
@InitiateTime = initiatetime
|
21224
|
+
@FinishTime = finishtime
|
21225
|
+
@Status = status
|
21226
|
+
@StatusDesc = statusdesc
|
21227
|
+
@Remark = remark
|
21228
|
+
end
|
21229
|
+
|
21230
|
+
def deserialize(params)
|
21231
|
+
@IncomeType = params['IncomeType']
|
21232
|
+
@AmountBeforeTax = params['AmountBeforeTax']
|
21233
|
+
@AmountAfterTax = params['AmountAfterTax']
|
21234
|
+
@Tax = params['Tax']
|
21235
|
+
@OutOrderId = params['OutOrderId']
|
21236
|
+
@OrderId = params['OrderId']
|
21237
|
+
@InitiateTime = params['InitiateTime']
|
21238
|
+
@FinishTime = params['FinishTime']
|
21239
|
+
@Status = params['Status']
|
21240
|
+
@StatusDesc = params['StatusDesc']
|
21241
|
+
@Remark = params['Remark']
|
21242
|
+
end
|
21243
|
+
end
|
21244
|
+
|
21245
|
+
# 结算订单列表
|
21246
|
+
class SettlementOrders < TencentCloud::Common::AbstractModel
|
21247
|
+
# @param List: 列表
|
21248
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21249
|
+
# @type List: Array
|
21250
|
+
# @param Count: 总数
|
21251
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21252
|
+
# @type Count: Integer
|
21253
|
+
|
21254
|
+
attr_accessor :List, :Count
|
21255
|
+
|
21256
|
+
def initialize(list=nil, count=nil)
|
21257
|
+
@List = list
|
21258
|
+
@Count = count
|
21259
|
+
end
|
21260
|
+
|
21261
|
+
def deserialize(params)
|
21262
|
+
unless params['List'].nil?
|
21263
|
+
@List = []
|
21264
|
+
params['List'].each do |i|
|
21265
|
+
settlementorderresult_tmp = SettlementOrderResult.new
|
21266
|
+
settlementorderresult_tmp.deserialize(i)
|
21267
|
+
@List << settlementorderresult_tmp
|
21268
|
+
end
|
21269
|
+
end
|
21270
|
+
@Count = params['Count']
|
21271
|
+
end
|
21272
|
+
end
|
21273
|
+
|
19663
21274
|
# 支持的银行信息
|
19664
21275
|
class SupportBankInfo < TencentCloud::Common::AbstractModel
|
19665
21276
|
# @param BankCode: 银行简称。
|