Class: DSP::SetDataBreakpointsRequest

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

Overview

interface SetDataBreakpointsRequest extends Request {

    arguments: SetDataBreakpointsArguments;
}

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: SetDataBreakpointsArguments # type: string # type: number # type: string



1671
1672
1673
# File 'lib/dsp/dsp_protocol.rb', line 1671

def arguments
  @arguments
end

#commandObject

type: SetDataBreakpointsArguments # type: string # type: number # type: string



1671
1672
1673
# File 'lib/dsp/dsp_protocol.rb', line 1671

def command
  @command
end

#seqObject

type: SetDataBreakpointsArguments # type: string # type: number # type: string



1671
1672
1673
# File 'lib/dsp/dsp_protocol.rb', line 1671

def seq
  @seq
end

#typeObject

type: SetDataBreakpointsArguments # type: string # type: number # type: string



1671
1672
1673
# File 'lib/dsp/dsp_protocol.rb', line 1671

def type
  @type
end

Instance Method Details

#from_h!(value) ⇒ Object



1673
1674
1675
1676
1677
1678
1679
1680
# File 'lib/dsp/dsp_protocol.rb', line 1673

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