Class: TencentCloud::Lcic::V20220817::SetWatermarkRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lcic::V20220817::SetWatermarkRequest
- Defined in:
- lib/v20220817/models.rb
Overview
SetWatermark请求参数结构体
Instance Attribute Summary collapse
- #BoardH ⇒ Object
- #BoardUrl ⇒ Object
- #BoardW ⇒ Object
- #BoardX ⇒ Object
- #BoardY ⇒ Object
- #SdkAppId ⇒ Object
- #TeacherH ⇒ Object
- #TeacherUrl ⇒ Object
- #TeacherW ⇒ Object
- #TeacherX ⇒ Object
- #TeacherY ⇒ Object
- #Text ⇒ Object
- #TextColor ⇒ Object
- #VideoUrl ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(sdkappid = nil, teacherurl = nil, boardurl = nil, videourl = nil, boardw = nil, boardh = nil, boardx = nil, boardy = nil, teacherw = nil, teacherh = nil, teacherx = nil, teachery = nil, text = nil, textcolor = nil) ⇒ SetWatermarkRequest
constructor
A new instance of SetWatermarkRequest.
Constructor Details
#initialize(sdkappid = nil, teacherurl = nil, boardurl = nil, videourl = nil, boardw = nil, boardh = nil, boardx = nil, boardy = nil, teacherw = nil, teacherh = nil, teacherx = nil, teachery = nil, text = nil, textcolor = nil) ⇒ SetWatermarkRequest
Returns a new instance of SetWatermarkRequest.
5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 |
# File 'lib/v20220817/models.rb', line 5010 def initialize(sdkappid=nil, teacherurl=nil, boardurl=nil, videourl=nil, boardw=nil, boardh=nil, boardx=nil, boardy=nil, teacherw=nil, teacherh=nil, teacherx=nil, teachery=nil, text=nil, textcolor=nil) @SdkAppId = sdkappid @TeacherUrl = teacherurl @BoardUrl = boardurl @VideoUrl = videourl @BoardW = boardw @BoardH = boardh @BoardX = boardx @BoardY = boardy @TeacherW = teacherw @TeacherH = teacherh @TeacherX = teacherx @TeacherY = teachery @Text = text @TextColor = textcolor end |
Instance Attribute Details
#BoardH ⇒ Object
5008 5009 5010 |
# File 'lib/v20220817/models.rb', line 5008 def BoardH @BoardH end |
#BoardUrl ⇒ Object
5008 5009 5010 |
# File 'lib/v20220817/models.rb', line 5008 def BoardUrl @BoardUrl end |
#BoardW ⇒ Object
5008 5009 5010 |
# File 'lib/v20220817/models.rb', line 5008 def BoardW @BoardW end |
#BoardX ⇒ Object
5008 5009 5010 |
# File 'lib/v20220817/models.rb', line 5008 def BoardX @BoardX end |
#BoardY ⇒ Object
5008 5009 5010 |
# File 'lib/v20220817/models.rb', line 5008 def BoardY @BoardY end |
#SdkAppId ⇒ Object
5008 5009 5010 |
# File 'lib/v20220817/models.rb', line 5008 def SdkAppId @SdkAppId end |
#TeacherH ⇒ Object
5008 5009 5010 |
# File 'lib/v20220817/models.rb', line 5008 def TeacherH @TeacherH end |
#TeacherUrl ⇒ Object
5008 5009 5010 |
# File 'lib/v20220817/models.rb', line 5008 def TeacherUrl @TeacherUrl end |
#TeacherW ⇒ Object
5008 5009 5010 |
# File 'lib/v20220817/models.rb', line 5008 def TeacherW @TeacherW end |
#TeacherX ⇒ Object
5008 5009 5010 |
# File 'lib/v20220817/models.rb', line 5008 def TeacherX @TeacherX end |
#TeacherY ⇒ Object
5008 5009 5010 |
# File 'lib/v20220817/models.rb', line 5008 def TeacherY @TeacherY end |
#Text ⇒ Object
5008 5009 5010 |
# File 'lib/v20220817/models.rb', line 5008 def Text @Text end |
#TextColor ⇒ Object
5008 5009 5010 |
# File 'lib/v20220817/models.rb', line 5008 def TextColor @TextColor end |
#VideoUrl ⇒ Object
5008 5009 5010 |
# File 'lib/v20220817/models.rb', line 5008 def VideoUrl @VideoUrl end |
Instance Method Details
#deserialize(params) ⇒ Object
5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 |
# File 'lib/v20220817/models.rb', line 5027 def deserialize(params) @SdkAppId = params['SdkAppId'] @TeacherUrl = params['TeacherUrl'] @BoardUrl = params['BoardUrl'] @VideoUrl = params['VideoUrl'] @BoardW = params['BoardW'] @BoardH = params['BoardH'] @BoardX = params['BoardX'] @BoardY = params['BoardY'] @TeacherW = params['TeacherW'] @TeacherH = params['TeacherH'] @TeacherX = params['TeacherX'] @TeacherY = params['TeacherY'] @Text = params['Text'] @TextColor = params['TextColor'] end |