Class: OBS::WebSocket::Protocol::Responses::GetVolume

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

Overview

Instance Attribute Summary collapse

Method Summary

Methods inherited from OBS::WebSocket::Protocol::Response

#initialize, #to_h

Constructor Details

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

Instance Attribute Details

#mutedBoolean (readonly)

Returns muted field.

Returns:

  • (Boolean)

    muted field



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

def muted; get_field("muted", Types::Boolean); end

#nameString (readonly)

Returns name field.

Returns:

  • (String)

    name field



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

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

#volumeFloat (readonly)

Returns volume field.

Returns:

  • (Float)

    volume field



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

def volume; get_field("volume", Types::Float); end