Class: TencentCloud::Iotvideoindustry::V20201201::ControlRecordStreamRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotvideoindustry::V20201201::ControlRecordStreamRequest
- Defined in:
- lib/v20201201/models.rb
Overview
ControlRecordStream请求参数结构体
Instance Attribute Summary collapse
-
#ChannelId ⇒ Object
| Offset | uint |否|拖动播放时的时间偏移量(相对于起始时间),单位:秒 目前支持的command: “Command”: “”Action“:”PAUSE“” 暂停 “Command”: “”Action“:”PLAY“” 暂停恢复 “Command”: “”Action“:”PLAY“,”Offset“:”15“” 位置偏移,可以替代jump操作.
-
#Command ⇒ Object
| Offset | uint |否|拖动播放时的时间偏移量(相对于起始时间),单位:秒 目前支持的command: “Command”: “”Action“:”PAUSE“” 暂停 “Command”: “”Action“:”PLAY“” 暂停恢复 “Command”: “”Action“:”PLAY“,”Offset“:”15“” 位置偏移,可以替代jump操作.
-
#DeviceId ⇒ Object
| Offset | uint |否|拖动播放时的时间偏移量(相对于起始时间),单位:秒 目前支持的command: “Command”: “”Action“:”PAUSE“” 暂停 “Command”: “”Action“:”PLAY“” 暂停恢复 “Command”: “”Action“:”PLAY“,”Offset“:”15“” 位置偏移,可以替代jump操作.
-
#StreamId ⇒ Object
| Offset | uint |否|拖动播放时的时间偏移量(相对于起始时间),单位:秒 目前支持的command: “Command”: “”Action“:”PAUSE“” 暂停 “Command”: “”Action“:”PLAY“” 暂停恢复 “Command”: “”Action“:”PLAY“,”Offset“:”15“” 位置偏移,可以替代jump操作.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(deviceid = nil, streamid = nil, command = nil, channelid = nil) ⇒ ControlRecordStreamRequest
constructor
A new instance of ControlRecordStreamRequest.
Constructor Details
#initialize(deviceid = nil, streamid = nil, command = nil, channelid = nil) ⇒ ControlRecordStreamRequest
Returns a new instance of ControlRecordStreamRequest.
533 534 535 536 537 538 |
# File 'lib/v20201201/models.rb', line 533 def initialize(deviceid=nil, streamid=nil, command=nil, channelid=nil) @DeviceId = deviceid @StreamId = streamid @Command = command @ChannelId = channelid end |
Instance Attribute Details
#ChannelId ⇒ Object
| Offset | uint |否|拖动播放时的时间偏移量(相对于起始时间),单位:秒 目前支持的command: “Command”: “”Action“:”PAUSE“” 暂停 “Command”: “”Action“:”PLAY“” 暂停恢复 “Command”: “”Action“:”PLAY“,”Offset“:”15“” 位置偏移,可以替代jump操作
531 532 533 |
# File 'lib/v20201201/models.rb', line 531 def ChannelId @ChannelId end |
#Command ⇒ Object
| Offset | uint |否|拖动播放时的时间偏移量(相对于起始时间),单位:秒 目前支持的command: “Command”: “”Action“:”PAUSE“” 暂停 “Command”: “”Action“:”PLAY“” 暂停恢复 “Command”: “”Action“:”PLAY“,”Offset“:”15“” 位置偏移,可以替代jump操作
531 532 533 |
# File 'lib/v20201201/models.rb', line 531 def Command @Command end |
#DeviceId ⇒ Object
| Offset | uint |否|拖动播放时的时间偏移量(相对于起始时间),单位:秒 目前支持的command: “Command”: “”Action“:”PAUSE“” 暂停 “Command”: “”Action“:”PLAY“” 暂停恢复 “Command”: “”Action“:”PLAY“,”Offset“:”15“” 位置偏移,可以替代jump操作
531 532 533 |
# File 'lib/v20201201/models.rb', line 531 def DeviceId @DeviceId end |
#StreamId ⇒ Object
| Offset | uint |否|拖动播放时的时间偏移量(相对于起始时间),单位:秒 目前支持的command: “Command”: “”Action“:”PAUSE“” 暂停 “Command”: “”Action“:”PLAY“” 暂停恢复 “Command”: “”Action“:”PLAY“,”Offset“:”15“” 位置偏移,可以替代jump操作
531 532 533 |
# File 'lib/v20201201/models.rb', line 531 def StreamId @StreamId end |
Instance Method Details
#deserialize(params) ⇒ Object
540 541 542 543 544 545 |
# File 'lib/v20201201/models.rb', line 540 def deserialize(params) @DeviceId = params['DeviceId'] @StreamId = params['StreamId'] @Command = params['Command'] @ChannelId = params['ChannelId'] end |