Class: TencentCloud::Live::V20180801::ModifyCasterLayoutInfoRequest

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

Overview

ModifyCasterLayoutInfo请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(casterid = nil, layoutinfo = nil) ⇒ ModifyCasterLayoutInfoRequest

Returns a new instance of ModifyCasterLayoutInfoRequest.



11792
11793
11794
11795
# File 'lib/v20180801/models.rb', line 11792

def initialize(casterid=nil, layoutinfo=nil)
  @CasterId = casterid
  @LayoutInfo = layoutinfo
end

Instance Attribute Details

#CasterIdObject

Parameters:

  • CasterId:

    导播台ID。

  • LayoutInfo:

    导播台布局参数信息。



11790
11791
11792
# File 'lib/v20180801/models.rb', line 11790

def CasterId
  @CasterId
end

#LayoutInfoObject

Parameters:

  • CasterId:

    导播台ID。

  • LayoutInfo:

    导播台布局参数信息。



11790
11791
11792
# File 'lib/v20180801/models.rb', line 11790

def LayoutInfo
  @LayoutInfo
end

Instance Method Details

#deserialize(params) ⇒ Object



11797
11798
11799
11800
11801
11802
11803
# File 'lib/v20180801/models.rb', line 11797

def deserialize(params)
  @CasterId = params['CasterId']
  unless params['LayoutInfo'].nil?
    @LayoutInfo = CasterLayoutInfo.new
    @LayoutInfo.deserialize(params['LayoutInfo'])
  end
end