Class: TencentCloud::Vod::V20180717::DescribeSuperPlayerConfigsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vod::V20180717::DescribeSuperPlayerConfigsResponse
- Defined in:
- lib/v20180717/models.rb
Overview
DescribeSuperPlayerConfigs返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, playerconfigset = nil, requestid = nil) ⇒ DescribeSuperPlayerConfigsResponse
constructor
A new instance of DescribeSuperPlayerConfigsResponse.
Constructor Details
#initialize(totalcount = nil, playerconfigset = nil, requestid = nil) ⇒ DescribeSuperPlayerConfigsResponse
Returns a new instance of DescribeSuperPlayerConfigsResponse.
12690 12691 12692 12693 12694 |
# File 'lib/v20180717/models.rb', line 12690 def initialize(totalcount=nil, playerconfigset=nil, requestid=nil) @TotalCount = totalcount @PlayerConfigSet = playerconfigset @RequestId = requestid end |
Instance Attribute Details
#PlayerConfigSet ⇒ Object
12688 12689 12690 |
# File 'lib/v20180717/models.rb', line 12688 def PlayerConfigSet @PlayerConfigSet end |
#RequestId ⇒ Object
12688 12689 12690 |
# File 'lib/v20180717/models.rb', line 12688 def RequestId @RequestId end |
#TotalCount ⇒ Object
12688 12689 12690 |
# File 'lib/v20180717/models.rb', line 12688 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 |
# File 'lib/v20180717/models.rb', line 12696 def deserialize(params) @TotalCount = params['TotalCount'] unless params['PlayerConfigSet'].nil? @PlayerConfigSet = [] params['PlayerConfigSet'].each do |i| playerconfig_tmp = PlayerConfig.new playerconfig_tmp.deserialize(i) @PlayerConfigSet << playerconfig_tmp end end @RequestId = params['RequestId'] end |