Class: TencentCloud::Iotvideoindustry::V20201201::ControlDevicePTZRequest

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

Overview

ControlDevicePTZ请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(deviceid = nil, command = nil, channelid = nil) ⇒ ControlDevicePTZRequest



365
366
367
368
369
# File 'lib/v20201201/models.rb', line 365

def initialize(deviceid=nil, command=nil, channelid=nil)
  @DeviceId = deviceid
  @Command = command
  @ChannelId = channelid
end

Instance Attribute Details

#ChannelIdObject

stop - 停止当前PTZ信令 left - 向左移动 right - 向右移动 up - 向上移动 down - 向下移动 leftUp - 左上移动 leftDown - 左下移动 rightUp - 右上移动 rightDown - 右下移动 zoomOut - 镜头缩小 zoomIn - 镜头放大 irisIn - 光圈缩小 irisOut - 光圈放大 focusIn - 焦距变近 focusOut - 焦距变远



363
364
365
# File 'lib/v20201201/models.rb', line 363

def ChannelId
  @ChannelId
end

#CommandObject

stop - 停止当前PTZ信令 left - 向左移动 right - 向右移动 up - 向上移动 down - 向下移动 leftUp - 左上移动 leftDown - 左下移动 rightUp - 右上移动 rightDown - 右下移动 zoomOut - 镜头缩小 zoomIn - 镜头放大 irisIn - 光圈缩小 irisOut - 光圈放大 focusIn - 焦距变近 focusOut - 焦距变远



363
364
365
# File 'lib/v20201201/models.rb', line 363

def Command
  @Command
end

#DeviceIdObject

stop - 停止当前PTZ信令 left - 向左移动 right - 向右移动 up - 向上移动 down - 向下移动 leftUp - 左上移动 leftDown - 左下移动 rightUp - 右上移动 rightDown - 右下移动 zoomOut - 镜头缩小 zoomIn - 镜头放大 irisIn - 光圈缩小 irisOut - 光圈放大 focusIn - 焦距变近 focusOut - 焦距变远



363
364
365
# File 'lib/v20201201/models.rb', line 363

def DeviceId
  @DeviceId
end

Instance Method Details

#deserialize(params) ⇒ Object



371
372
373
374
375
# File 'lib/v20201201/models.rb', line 371

def deserialize(params)
  @DeviceId = params['DeviceId']
  @Command = params['Command']
  @ChannelId = params['ChannelId']
end