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.
2801 2802 2803 2804 |
# File 'lib/v20180608/models.rb', line 2801 def initialize(envbillinginfolist=nil, requestid=nil) @EnvBillingInfoList = envbillinginfolist @RequestId = requestid end |
Instance Attribute Details
#EnvBillingInfoList ⇒ Object
2799 2800 2801 |
# File 'lib/v20180608/models.rb', line 2799 def EnvBillingInfoList @EnvBillingInfoList end |
#RequestId ⇒ Object
2799 2800 2801 |
# File 'lib/v20180608/models.rb', line 2799 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 |
# File 'lib/v20180608/models.rb', line 2806 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 |