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
4799 4800 4801 4802 4803 |
# File 'lib/v20180608/models.rb', line 4799 def initialize(envinfolist=nil, total=nil, requestid=nil) @EnvInfoList = envinfolist @Total = total @RequestId = requestid end |
Instance Attribute Details
#EnvInfoList ⇒ Object
4797 4798 4799 |
# File 'lib/v20180608/models.rb', line 4797 def EnvInfoList @EnvInfoList end |
#RequestId ⇒ Object
4797 4798 4799 |
# File 'lib/v20180608/models.rb', line 4797 def RequestId @RequestId end |
#Total ⇒ Object
4797 4798 4799 |
# File 'lib/v20180608/models.rb', line 4797 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 |
# File 'lib/v20180608/models.rb', line 4805 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 |