Class: DSP::SetBreakpointsRequest

Inherits:
DSPBase
  • Object
show all
Defined in:
lib/dsp/dsp_protocol.rb

Overview

interface SetBreakpointsRequest extends Request {

    arguments: SetBreakpointsArguments;
}

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DSPBase

#initialize, #to_h, #to_json

Constructor Details

This class inherits a constructor from DSP::DSPBase

Instance Attribute Details

#argumentsObject

type: SetBreakpointsArguments # type: string # type: number # type: string



1385
1386
1387
# File 'lib/dsp/dsp_protocol.rb', line 1385

def arguments
  @arguments
end

#commandObject

type: SetBreakpointsArguments # type: string # type: number # type: string



1385
1386
1387
# File 'lib/dsp/dsp_protocol.rb', line 1385

def command
  @command
end

#seqObject

type: SetBreakpointsArguments # type: string # type: number # type: string



1385
1386
1387
# File 'lib/dsp/dsp_protocol.rb', line 1385

def seq
  @seq
end

#typeObject

type: SetBreakpointsArguments # type: string # type: number # type: string



1385
1386
1387
# File 'lib/dsp/dsp_protocol.rb', line 1385

def type
  @type
end

Instance Method Details

#from_h!(value) ⇒ Object



1387
1388
1389
1390
1391
1392
1393
1394
# File 'lib/dsp/dsp_protocol.rb', line 1387

def from_h!(value)
  value = {} if value.nil?
  self.arguments = SetBreakpointsArguments.new(value['arguments']) unless value['arguments'].nil?
  self.command = value['command']
  self.seq = value['seq']
  self.type = value['type']
  self
end