Class: TencentCloud::Iotvideoindustry::V20201201::ControlChannelPTZRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::ControlChannelPTZRequest
- Defined in:
- lib/v20201201/models.rb
Overview
ControlChannelPTZ请求参数结构体
Instance Attribute Summary collapse
-
#ChannelId ⇒ Object
stop - 停止当前PTZ信令 left - 向左移动 right - 向右移动 up - 向上移动 down - 向下移动 leftUp - 左上移动 leftDown - 左下移动 rightUp - 右上移动 rightDown - 右下移动 zoomOut - 镜头缩小 zoomIn - 镜头放大 irisIn - 光圈缩小 irisOut - 光圈放大 focusIn - 焦距变近 focusOut - 焦距变远.
-
#Command ⇒ Object
stop - 停止当前PTZ信令 left - 向左移动 right - 向右移动 up - 向上移动 down - 向下移动 leftUp - 左上移动 leftDown - 左下移动 rightUp - 右上移动 rightDown - 右下移动 zoomOut - 镜头缩小 zoomIn - 镜头放大 irisIn - 光圈缩小 irisOut - 光圈放大 focusIn - 焦距变近 focusOut - 焦距变远.
-
#DeviceId ⇒ Object
stop - 停止当前PTZ信令 left - 向左移动 right - 向右移动 up - 向上移动 down - 向下移动 leftUp - 左上移动 leftDown - 左下移动 rightUp - 右上移动 rightDown - 右下移动 zoomOut - 镜头缩小 zoomIn - 镜头放大 irisIn - 光圈缩小 irisOut - 光圈放大 focusIn - 焦距变近 focusOut - 焦距变远.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(deviceid = nil, channelid = nil, command = nil) ⇒ ControlChannelPTZRequest
constructor
A new instance of ControlChannelPTZRequest.
Constructor Details
#initialize(deviceid = nil, channelid = nil, command = nil) ⇒ ControlChannelPTZRequest
Returns a new instance of ControlChannelPTZRequest.
336 337 338 339 340 |
# File 'lib/v20201201/models.rb', line 336 def initialize(deviceid=nil, channelid=nil, command=nil) @DeviceId = deviceid @ChannelId = channelid @Command = command end |
Instance Attribute Details
#ChannelId ⇒ Object
stop - 停止当前PTZ信令 left - 向左移动 right - 向右移动 up - 向上移动 down - 向下移动 leftUp - 左上移动 leftDown - 左下移动 rightUp - 右上移动 rightDown - 右下移动 zoomOut - 镜头缩小 zoomIn - 镜头放大 irisIn - 光圈缩小 irisOut - 光圈放大 focusIn - 焦距变近 focusOut - 焦距变远
334 335 336 |
# File 'lib/v20201201/models.rb', line 334 def ChannelId @ChannelId end |
#Command ⇒ Object
stop - 停止当前PTZ信令 left - 向左移动 right - 向右移动 up - 向上移动 down - 向下移动 leftUp - 左上移动 leftDown - 左下移动 rightUp - 右上移动 rightDown - 右下移动 zoomOut - 镜头缩小 zoomIn - 镜头放大 irisIn - 光圈缩小 irisOut - 光圈放大 focusIn - 焦距变近 focusOut - 焦距变远
334 335 336 |
# File 'lib/v20201201/models.rb', line 334 def Command @Command end |
#DeviceId ⇒ Object
stop - 停止当前PTZ信令 left - 向左移动 right - 向右移动 up - 向上移动 down - 向下移动 leftUp - 左上移动 leftDown - 左下移动 rightUp - 右上移动 rightDown - 右下移动 zoomOut - 镜头缩小 zoomIn - 镜头放大 irisIn - 光圈缩小 irisOut - 光圈放大 focusIn - 焦距变近 focusOut - 焦距变远
334 335 336 |
# File 'lib/v20201201/models.rb', line 334 def DeviceId @DeviceId end |
Instance Method Details
#deserialize(params) ⇒ Object
342 343 344 345 346 |
# File 'lib/v20201201/models.rb', line 342 def deserialize(params) @DeviceId = params['DeviceId'] @ChannelId = params['ChannelId'] @Command = params['Command'] end |