class TencentCloud::Mps::V20190612::DescribeOutputRTMPSettings
查询输出的RTMP配置信息。
def deserialize(params)
def deserialize(params) @IdleTimeout = params['IdleTimeout'] @ChunkSize = params['ChunkSize'] unless params['Destinations'].nil? @Destinations = [] params['Destinations'].each do |i| rtmpaddressdestination_tmp = RTMPAddressDestination.new rtmpaddressdestination_tmp.deserialize(i) @Destinations << rtmpaddressdestination_tmp end end end
def initialize(idletimeout=nil, chunksize=nil, destinations=nil)
def initialize(idletimeout=nil, chunksize=nil, destinations=nil) @IdleTimeout = idletimeout @ChunkSize = chunksize @Destinations = destinations end