Class: TencentCloud::Live::V20180801::DescribeDeliverBandwidthListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::DescribeDeliverBandwidthListResponse
- Defined in:
- lib/v20180801/models.rb
Overview
DescribeDeliverBandwidthList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(datainfolist = nil, requestid = nil) ⇒ DescribeDeliverBandwidthListResponse
constructor
A new instance of DescribeDeliverBandwidthListResponse.
Constructor Details
#initialize(datainfolist = nil, requestid = nil) ⇒ DescribeDeliverBandwidthListResponse
Returns a new instance of DescribeDeliverBandwidthListResponse.
6171 6172 6173 6174 |
# File 'lib/v20180801/models.rb', line 6171 def initialize(datainfolist=nil, requestid=nil) @DataInfoList = datainfolist @RequestId = requestid end |
Instance Attribute Details
#DataInfoList ⇒ Object
6169 6170 6171 |
# File 'lib/v20180801/models.rb', line 6169 def DataInfoList @DataInfoList end |
#RequestId ⇒ Object
6169 6170 6171 |
# File 'lib/v20180801/models.rb', line 6169 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 |
# File 'lib/v20180801/models.rb', line 6176 def deserialize(params) unless params['DataInfoList'].nil? @DataInfoList = [] params['DataInfoList'].each do |i| bandwidthinfo_tmp = BandwidthInfo.new bandwidthinfo_tmp.deserialize(i) @DataInfoList << bandwidthinfo_tmp end end @RequestId = params['RequestId'] end |