Class: DSP::PauseRequest
Overview
interface PauseRequest extends Request {
arguments: PauseArguments;
}
Instance Attribute Summary collapse
-
#arguments ⇒ Object
type: PauseArguments # type: string # type: number # type: string.
-
#command ⇒ Object
type: PauseArguments # type: string # type: number # type: string.
-
#seq ⇒ Object
type: PauseArguments # type: string # type: number # type: string.
-
#type ⇒ Object
type: PauseArguments # type: string # type: number # type: string.
Instance Method Summary collapse
Methods inherited from DSPBase
Constructor Details
This class inherits a constructor from DSP::DSPBase
Instance Attribute Details
#arguments ⇒ Object
type: PauseArguments # type: string # type: number # type: string
2181 2182 2183 |
# File 'lib/dsp/dsp_protocol.rb', line 2181 def arguments @arguments end |
#command ⇒ Object
type: PauseArguments # type: string # type: number # type: string
2181 2182 2183 |
# File 'lib/dsp/dsp_protocol.rb', line 2181 def command @command end |
#seq ⇒ Object
type: PauseArguments # type: string # type: number # type: string
2181 2182 2183 |
# File 'lib/dsp/dsp_protocol.rb', line 2181 def seq @seq end |
#type ⇒ Object
type: PauseArguments # type: string # type: number # type: string
2181 2182 2183 |
# File 'lib/dsp/dsp_protocol.rb', line 2181 def type @type end |
Instance Method Details
#from_h!(value) ⇒ Object
2183 2184 2185 2186 2187 2188 2189 2190 |
# File 'lib/dsp/dsp_protocol.rb', line 2183 def from_h!(value) value = {} if value.nil? self.arguments = PauseArguments.new(value['arguments']) unless value['arguments'].nil? self.command = value['command'] self.seq = value['seq'] self.type = value['type'] self end |