Class: OBS::WebSocket::Protocol::Events::TransitionEnd

Inherits:
OBS::WebSocket::Protocol::Event show all
Defined in:
lib/obs/websocket/protocol.rb

Instance Attribute Summary collapse

Method Summary

Methods inherited from OBS::WebSocket::Protocol::Event

create, #initialize, json_name, #rec_timecode, #stream_timecode, #to_h, #update_type

Constructor Details

This class inherits a constructor from OBS::WebSocket::Protocol::Event

Instance Attribute Details

#durationInteger (readonly)

Returns duration field.

Returns:

  • (Integer)

    duration field



141
# File 'lib/obs/websocket/protocol.rb', line 141

def duration; get_field("duration", Types::Integer); end

#nameString (readonly)

Returns name field.

Returns:

  • (String)

    name field



135
# File 'lib/obs/websocket/protocol.rb', line 135

def name; get_field("name", Types::String); end

#to_sceneString (readonly)

Returns to-scene field.

Returns:

  • (String)

    to-scene field



144
# File 'lib/obs/websocket/protocol.rb', line 144

def to_scene; get_field("to-scene", Types::String); end

#typeString (readonly)

Returns type field.

Returns:

  • (String)

    type field



138
# File 'lib/obs/websocket/protocol.rb', line 138

def type; get_field("type", Types::String); end