Class: DSP::SetFunctionBreakpointsResponse
- Defined in:
- lib/dsp/dsp_protocol.rb
Overview
interface SetFunctionBreakpointsResponse extends Response {
body: {
/** Information about the breakpoints. The array elements correspond to the elements of the 'breakpoints' array. */
breakpoints: Breakpoint[];
};
}
Instance Attribute Summary collapse
-
#body ⇒ Object
type: {.
-
#command ⇒ Object
type: {.
-
#message ⇒ Object
type: {.
-
#request_seq ⇒ Object
/** Information about the breakpoints.
-
#seq ⇒ Object
type: {.
-
#success ⇒ Object
type: {.
-
#type ⇒ Object
type: {.
Instance Method Summary collapse
- #from_h!(value) ⇒ Object
-
#initialize(initial_hash = nil) ⇒ SetFunctionBreakpointsResponse
constructor
A new instance of SetFunctionBreakpointsResponse.
Methods inherited from DSPBase
Constructor Details
#initialize(initial_hash = nil) ⇒ SetFunctionBreakpointsResponse
Returns a new instance of SetFunctionBreakpointsResponse.
1503 1504 1505 1506 |
# File 'lib/dsp/dsp_protocol.rb', line 1503 def initialize(initial_hash = nil) super @optional_method_names = %i[message] end |
Instance Attribute Details
#body ⇒ Object
type: {
1497 1498 1499 |
# File 'lib/dsp/dsp_protocol.rb', line 1497 def body @body end |
#command ⇒ Object
type: {
1497 1498 1499 |
# File 'lib/dsp/dsp_protocol.rb', line 1497 def command @command end |
#message ⇒ Object
type: {
1497 1498 1499 |
# File 'lib/dsp/dsp_protocol.rb', line 1497 def @message end |
#request_seq ⇒ Object
/** Information about the breakpoints. The array elements correspond to the elements of the ‘breakpoints’ array. */
breakpoints: Breakpoint[];
}
1501 1502 1503 |
# File 'lib/dsp/dsp_protocol.rb', line 1501 def request_seq @request_seq end |
#seq ⇒ Object
type: {
1497 1498 1499 |
# File 'lib/dsp/dsp_protocol.rb', line 1497 def seq @seq end |
#success ⇒ Object
type: {
1497 1498 1499 |
# File 'lib/dsp/dsp_protocol.rb', line 1497 def success @success end |
#type ⇒ Object
type: {
1497 1498 1499 |
# File 'lib/dsp/dsp_protocol.rb', line 1497 def type @type end |
Instance Method Details
#from_h!(value) ⇒ Object
1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 |
# File 'lib/dsp/dsp_protocol.rb', line 1508 def from_h!(value) value = {} if value.nil? self.body = value['body'] # Unknown type self.request_seq = value['request_seq'] self.success = value['success'] # Unknown type self.command = value['command'] self. = value['message'] self.seq = value['seq'] self.type = value['type'] self end |