Class: DSP::TerminateResponse

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

Overview

interface TerminateResponse extends Response


Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from DSPBase

#to_h, #to_json

Constructor Details

#initialize(initial_hash = nil) ⇒ TerminateResponse

Returns a new instance of TerminateResponse.



1280
1281
1282
1283
# File 'lib/dsp/dsp_protocol.rb', line 1280

def initialize(initial_hash = nil)
  super
  @optional_method_names = %i[message body]
end

Instance Attribute Details

#bodyObject

type: number # type: boolean # type: string # type: string # type: any # type: number # type: string



1278
1279
1280
# File 'lib/dsp/dsp_protocol.rb', line 1278

def body
  @body
end

#commandObject

type: number # type: boolean # type: string # type: string # type: any # type: number # type: string



1278
1279
1280
# File 'lib/dsp/dsp_protocol.rb', line 1278

def command
  @command
end

#messageObject

type: number # type: boolean # type: string # type: string # type: any # type: number # type: string



1278
1279
1280
# File 'lib/dsp/dsp_protocol.rb', line 1278

def message
  @message
end

#request_seqObject

type: number # type: boolean # type: string # type: string # type: any # type: number # type: string



1278
1279
1280
# File 'lib/dsp/dsp_protocol.rb', line 1278

def request_seq
  @request_seq
end

#seqObject

type: number # type: boolean # type: string # type: string # type: any # type: number # type: string



1278
1279
1280
# File 'lib/dsp/dsp_protocol.rb', line 1278

def seq
  @seq
end

#successObject

type: number # type: boolean # type: string # type: string # type: any # type: number # type: string



1278
1279
1280
# File 'lib/dsp/dsp_protocol.rb', line 1278

def success
  @success
end

#typeObject

type: number # type: boolean # type: string # type: string # type: any # type: number # type: string



1278
1279
1280
# File 'lib/dsp/dsp_protocol.rb', line 1278

def type
  @type
end

Instance Method Details

#from_h!(value) ⇒ Object



1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
# File 'lib/dsp/dsp_protocol.rb', line 1285

def from_h!(value)
  value = {} if value.nil?
  self.request_seq = value['request_seq']
  self.success = value['success'] # Unknown type
  self.command = value['command']
  self.message = value['message']
  self.body = value['body']
  self.seq = value['seq']
  self.type = value['type']
  self
end