Class: TencentCloud::Tcb::V20180608::DescribeExtraPkgBillingInfoResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcb::V20180608::DescribeExtraPkgBillingInfoResponse
- Defined in:
- lib/v20180608/models.rb
Overview
DescribeExtraPkgBillingInfo返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(envinfolist = nil, total = nil, requestid = nil) ⇒ DescribeExtraPkgBillingInfoResponse
constructor
A new instance of DescribeExtraPkgBillingInfoResponse.
Constructor Details
#initialize(envinfolist = nil, total = nil, requestid = nil) ⇒ DescribeExtraPkgBillingInfoResponse
Returns a new instance of DescribeExtraPkgBillingInfoResponse.
5281 5282 5283 5284 5285 |
# File 'lib/v20180608/models.rb', line 5281 def initialize(envinfolist=nil, total=nil, requestid=nil) @EnvInfoList = envinfolist @Total = total @RequestId = requestid end |
Instance Attribute Details
#EnvInfoList ⇒ Object
5279 5280 5281 |
# File 'lib/v20180608/models.rb', line 5279 def EnvInfoList @EnvInfoList end |
#RequestId ⇒ Object
5279 5280 5281 |
# File 'lib/v20180608/models.rb', line 5279 def RequestId @RequestId end |
#Total ⇒ Object
5279 5280 5281 |
# File 'lib/v20180608/models.rb', line 5279 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 |
# File 'lib/v20180608/models.rb', line 5287 def deserialize(params) unless params['EnvInfoList'].nil? @EnvInfoList = [] params['EnvInfoList'].each do |i| envbillinginfoitem_tmp = EnvBillingInfoItem.new envbillinginfoitem_tmp.deserialize(i) @EnvInfoList << envbillinginfoitem_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |