Class: TencentCloud::Tcb::V20180608::DescribeEnvPostpaidDeductResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcb::V20180608::DescribeEnvPostpaidDeductResponse
- Defined in:
- lib/v20180608/models.rb
Overview
DescribeEnvPostpaidDeduct返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(postpaidenvdeductinfolist = nil, requestid = nil) ⇒ DescribeEnvPostpaidDeductResponse
constructor
A new instance of DescribeEnvPostpaidDeductResponse.
Constructor Details
#initialize(postpaidenvdeductinfolist = nil, requestid = nil) ⇒ DescribeEnvPostpaidDeductResponse
4640 4641 4642 4643 |
# File 'lib/v20180608/models.rb', line 4640 def initialize(postpaidenvdeductinfolist=nil, requestid=nil) @PostPaidEnvDeductInfoList = postpaidenvdeductinfolist @RequestId = requestid end |
Instance Attribute Details
#PostPaidEnvDeductInfoList ⇒ Object
4638 4639 4640 |
# File 'lib/v20180608/models.rb', line 4638 def PostPaidEnvDeductInfoList @PostPaidEnvDeductInfoList end |
#RequestId ⇒ Object
4638 4639 4640 |
# File 'lib/v20180608/models.rb', line 4638 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 |
# File 'lib/v20180608/models.rb', line 4645 def deserialize(params) unless params['PostPaidEnvDeductInfoList'].nil? @PostPaidEnvDeductInfoList = [] params['PostPaidEnvDeductInfoList'].each do |i| postpaidenvdeductinfo_tmp = PostPaidEnvDeductInfo.new postpaidenvdeductinfo_tmp.deserialize(i) @PostPaidEnvDeductInfoList << postpaidenvdeductinfo_tmp end end @RequestId = params['RequestId'] end |