Class: TencentCloud::Tcb::V20180608::DescribeBillingInfoResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcb::V20180608::DescribeBillingInfoResponse
- Defined in:
- lib/v20180608/models.rb
Overview
DescribeBillingInfo返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(envbillinginfolist = nil, requestid = nil) ⇒ DescribeBillingInfoResponse
constructor
A new instance of DescribeBillingInfoResponse.
Constructor Details
#initialize(envbillinginfolist = nil, requestid = nil) ⇒ DescribeBillingInfoResponse
Returns a new instance of DescribeBillingInfoResponse.
3357 3358 3359 3360 |
# File 'lib/v20180608/models.rb', line 3357 def initialize(envbillinginfolist=nil, requestid=nil) @EnvBillingInfoList = envbillinginfolist @RequestId = requestid end |
Instance Attribute Details
#EnvBillingInfoList ⇒ Object
3355 3356 3357 |
# File 'lib/v20180608/models.rb', line 3355 def EnvBillingInfoList @EnvBillingInfoList end |
#RequestId ⇒ Object
3355 3356 3357 |
# File 'lib/v20180608/models.rb', line 3355 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 |
# File 'lib/v20180608/models.rb', line 3362 def deserialize(params) unless params['EnvBillingInfoList'].nil? @EnvBillingInfoList = [] params['EnvBillingInfoList'].each do |i| envbillinginfoitem_tmp = EnvBillingInfoItem.new envbillinginfoitem_tmp.deserialize(i) @EnvBillingInfoList << envbillinginfoitem_tmp end end @RequestId = params['RequestId'] end |