Class: DSP::DataBreakpointInfoRequest

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

Overview

interface DataBreakpointInfoRequest extends Request {

    arguments: DataBreakpointInfoArguments;
}

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



1588
1589
1590
# File 'lib/dsp/dsp_protocol.rb', line 1588

def arguments
  @arguments
end

#commandObject

type: DataBreakpointInfoArguments # type: string # type: number # type: string



1588
1589
1590
# File 'lib/dsp/dsp_protocol.rb', line 1588

def command
  @command
end

#seqObject

type: DataBreakpointInfoArguments # type: string # type: number # type: string



1588
1589
1590
# File 'lib/dsp/dsp_protocol.rb', line 1588

def seq
  @seq
end

#typeObject

type: DataBreakpointInfoArguments # type: string # type: number # type: string



1588
1589
1590
# File 'lib/dsp/dsp_protocol.rb', line 1588

def type
  @type
end

Instance Method Details

#from_h!(value) ⇒ Object



1590
1591
1592
1593
1594
1595
1596
1597
# File 'lib/dsp/dsp_protocol.rb', line 1590

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