Class: TencentCloud::Vod::V20180717::DescribeSuperPlayerConfigsResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180717/models.rb

Overview

DescribeSuperPlayerConfigs返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#PlayerConfigSetObject

Parameters:

  • TotalCount:

    符合过滤条件的记录总数。

  • PlayerConfigSet:

    播放器配置数组。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



12688
12689
12690
# File 'lib/v20180717/models.rb', line 12688

def PlayerConfigSet
  @PlayerConfigSet
end

#RequestIdObject

Parameters:

  • TotalCount:

    符合过滤条件的记录总数。

  • PlayerConfigSet:

    播放器配置数组。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



12688
12689
12690
# File 'lib/v20180717/models.rb', line 12688

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • TotalCount:

    符合过滤条件的记录总数。

  • PlayerConfigSet:

    播放器配置数组。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



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