Class: TencentCloud::Lcic::V20220817::SetMarqueeRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lcic::V20220817::SetMarqueeRequest
- Defined in:
- lib/v20220817/models.rb
Overview
SetMarquee请求参数结构体
Instance Attribute Summary collapse
- #BackgroundColor ⇒ Object
- #BackgroundOpacity ⇒ Object
- #Content ⇒ Object
- #DisplayMode ⇒ Object
- #Duration ⇒ Object
- #FontColor ⇒ Object
- #FontOpacity ⇒ Object
- #FontSize ⇒ Object
- #FontWeight ⇒ Object
- #MarqueeCount ⇒ Object
- #MarqueeType ⇒ Object
- #RoomId ⇒ Object
- #SdkAppId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(sdkappid = nil, roomid = nil, marqueetype = nil, displaymode = nil, content = nil, fontsize = nil, fontweight = nil, fontcolor = nil, fontopacity = nil, backgroundcolor = nil, backgroundopacity = nil, duration = nil, marqueecount = nil) ⇒ SetMarqueeRequest
constructor
A new instance of SetMarqueeRequest.
Constructor Details
#initialize(sdkappid = nil, roomid = nil, marqueetype = nil, displaymode = nil, content = nil, fontsize = nil, fontweight = nil, fontcolor = nil, fontopacity = nil, backgroundcolor = nil, backgroundopacity = nil, duration = nil, marqueecount = nil) ⇒ SetMarqueeRequest
Returns a new instance of SetMarqueeRequest.
4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 |
# File 'lib/v20220817/models.rb', line 4928 def initialize(sdkappid=nil, roomid=nil, marqueetype=nil, displaymode=nil, content=nil, fontsize=nil, fontweight=nil, fontcolor=nil, fontopacity=nil, backgroundcolor=nil, backgroundopacity=nil, duration=nil, marqueecount=nil) @SdkAppId = sdkappid @RoomId = roomid @MarqueeType = marqueetype @DisplayMode = displaymode @Content = content @FontSize = fontsize @FontWeight = fontweight @FontColor = fontcolor @FontOpacity = fontopacity @BackgroundColor = backgroundcolor @BackgroundOpacity = backgroundopacity @Duration = duration @MarqueeCount = marqueecount end |
Instance Attribute Details
#BackgroundColor ⇒ Object
4926 4927 4928 |
# File 'lib/v20220817/models.rb', line 4926 def BackgroundColor @BackgroundColor end |
#BackgroundOpacity ⇒ Object
4926 4927 4928 |
# File 'lib/v20220817/models.rb', line 4926 def BackgroundOpacity @BackgroundOpacity end |
#Content ⇒ Object
4926 4927 4928 |
# File 'lib/v20220817/models.rb', line 4926 def Content @Content end |
#DisplayMode ⇒ Object
4926 4927 4928 |
# File 'lib/v20220817/models.rb', line 4926 def DisplayMode @DisplayMode end |
#Duration ⇒ Object
4926 4927 4928 |
# File 'lib/v20220817/models.rb', line 4926 def Duration @Duration end |
#FontColor ⇒ Object
4926 4927 4928 |
# File 'lib/v20220817/models.rb', line 4926 def FontColor @FontColor end |
#FontOpacity ⇒ Object
4926 4927 4928 |
# File 'lib/v20220817/models.rb', line 4926 def FontOpacity @FontOpacity end |
#FontSize ⇒ Object
4926 4927 4928 |
# File 'lib/v20220817/models.rb', line 4926 def FontSize @FontSize end |
#FontWeight ⇒ Object
4926 4927 4928 |
# File 'lib/v20220817/models.rb', line 4926 def FontWeight @FontWeight end |
#MarqueeCount ⇒ Object
4926 4927 4928 |
# File 'lib/v20220817/models.rb', line 4926 def MarqueeCount @MarqueeCount end |
#MarqueeType ⇒ Object
4926 4927 4928 |
# File 'lib/v20220817/models.rb', line 4926 def MarqueeType @MarqueeType end |
#RoomId ⇒ Object
4926 4927 4928 |
# File 'lib/v20220817/models.rb', line 4926 def RoomId @RoomId end |
#SdkAppId ⇒ Object
4926 4927 4928 |
# File 'lib/v20220817/models.rb', line 4926 def SdkAppId @SdkAppId end |
Instance Method Details
#deserialize(params) ⇒ Object
4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 |
# File 'lib/v20220817/models.rb', line 4944 def deserialize(params) @SdkAppId = params['SdkAppId'] @RoomId = params['RoomId'] @MarqueeType = params['MarqueeType'] @DisplayMode = params['DisplayMode'] @Content = params['Content'] @FontSize = params['FontSize'] @FontWeight = params['FontWeight'] @FontColor = params['FontColor'] @FontOpacity = params['FontOpacity'] @BackgroundColor = params['BackgroundColor'] @BackgroundOpacity = params['BackgroundOpacity'] @Duration = params['Duration'] @MarqueeCount = params['MarqueeCount'] end |