Class: DSP::SetExceptionBreakpointsRequest

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

Overview

interface SetExceptionBreakpointsRequest extends Request {

    arguments: SetExceptionBreakpointsArguments;
}

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



1525
1526
1527
# File 'lib/dsp/dsp_protocol.rb', line 1525

def arguments
  @arguments
end

#commandObject

type: SetExceptionBreakpointsArguments # type: string # type: number # type: string



1525
1526
1527
# File 'lib/dsp/dsp_protocol.rb', line 1525

def command
  @command
end

#seqObject

type: SetExceptionBreakpointsArguments # type: string # type: number # type: string



1525
1526
1527
# File 'lib/dsp/dsp_protocol.rb', line 1525

def seq
  @seq
end

#typeObject

type: SetExceptionBreakpointsArguments # type: string # type: number # type: string



1525
1526
1527
# File 'lib/dsp/dsp_protocol.rb', line 1525

def type
  @type
end

Instance Method Details

#from_h!(value) ⇒ Object



1527
1528
1529
1530
1531
1532
1533
1534
# File 'lib/dsp/dsp_protocol.rb', line 1527

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