Class: TencentCloud::Live::V20180801::DescribeLiveDelayInfoListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::DescribeLiveDelayInfoListResponse
- Defined in:
- lib/v20180801/models.rb
Overview
DescribeLiveDelayInfoList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(delayinfolist = nil, requestid = nil) ⇒ DescribeLiveDelayInfoListResponse
constructor
A new instance of DescribeLiveDelayInfoListResponse.
Constructor Details
#initialize(delayinfolist = nil, requestid = nil) ⇒ DescribeLiveDelayInfoListResponse
Returns a new instance of DescribeLiveDelayInfoListResponse.
6635 6636 6637 6638 |
# File 'lib/v20180801/models.rb', line 6635 def initialize(=nil, requestid=nil) @DelayInfoList = @RequestId = requestid end |
Instance Attribute Details
#DelayInfoList ⇒ Object
6633 6634 6635 |
# File 'lib/v20180801/models.rb', line 6633 def DelayInfoList @DelayInfoList end |
#RequestId ⇒ Object
6633 6634 6635 |
# File 'lib/v20180801/models.rb', line 6633 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 |
# File 'lib/v20180801/models.rb', line 6640 def deserialize(params) unless params['DelayInfoList'].nil? @DelayInfoList = [] params['DelayInfoList'].each do |i| = DelayInfo.new .deserialize(i) @DelayInfoList << end end @RequestId = params['RequestId'] end |