Class: DSP::ReverseContinueRequest

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

Overview

interface ReverseContinueRequest extends Request {

    arguments: ReverseContinueArguments;
}

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



2019
2020
2021
# File 'lib/dsp/dsp_protocol.rb', line 2019

def arguments
  @arguments
end

#commandObject

type: ReverseContinueArguments # type: string # type: number # type: string



2019
2020
2021
# File 'lib/dsp/dsp_protocol.rb', line 2019

def command
  @command
end

#seqObject

type: ReverseContinueArguments # type: string # type: number # type: string



2019
2020
2021
# File 'lib/dsp/dsp_protocol.rb', line 2019

def seq
  @seq
end

#typeObject

type: ReverseContinueArguments # type: string # type: number # type: string



2019
2020
2021
# File 'lib/dsp/dsp_protocol.rb', line 2019

def type
  @type
end

Instance Method Details

#from_h!(value) ⇒ Object



2021
2022
2023
2024
2025
2026
2027
2028
# File 'lib/dsp/dsp_protocol.rb', line 2021

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