Class: DSP::StepInTargetsRequest

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

Overview

interface StepInTargetsRequest extends Request {

    arguments: StepInTargetsArguments;
}

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



3136
3137
3138
# File 'lib/dsp/dsp_protocol.rb', line 3136

def arguments
  @arguments
end

#commandObject

type: StepInTargetsArguments # type: string # type: number # type: string



3136
3137
3138
# File 'lib/dsp/dsp_protocol.rb', line 3136

def command
  @command
end

#seqObject

type: StepInTargetsArguments # type: string # type: number # type: string



3136
3137
3138
# File 'lib/dsp/dsp_protocol.rb', line 3136

def seq
  @seq
end

#typeObject

type: StepInTargetsArguments # type: string # type: number # type: string



3136
3137
3138
# File 'lib/dsp/dsp_protocol.rb', line 3136

def type
  @type
end

Instance Method Details

#from_h!(value) ⇒ Object



3138
3139
3140
3141
3142
3143
3144
3145
# File 'lib/dsp/dsp_protocol.rb', line 3138

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