Class: DSP::SetDataBreakpointsResponse
- Defined in:
- lib/dsp/dsp_protocol.rb
Overview
interface SetDataBreakpointsResponse extends Response {
body: {
/** Information about the data breakpoints. The array elements correspond to the elements of the input argument 'breakpoints' array. */
breakpoints: Breakpoint[];
};
}
Instance Attribute Summary collapse
-
#body ⇒ Object
type: {.
-
#command ⇒ Object
type: {.
-
#message ⇒ Object
type: {.
-
#request_seq ⇒ Object
/** Information about the data breakpoints.
-
#seq ⇒ Object
type: {.
-
#success ⇒ Object
type: {.
-
#type ⇒ Object
type: {.
Instance Method Summary collapse
- #from_h!(value) ⇒ Object
-
#initialize(initial_hash = nil) ⇒ SetDataBreakpointsResponse
constructor
A new instance of SetDataBreakpointsResponse.
Methods inherited from DSPBase
Constructor Details
#initialize(initial_hash = nil) ⇒ SetDataBreakpointsResponse
Returns a new instance of SetDataBreakpointsResponse.
1710 1711 1712 1713 |
# File 'lib/dsp/dsp_protocol.rb', line 1710 def initialize(initial_hash = nil) super @optional_method_names = i[] end |
Instance Attribute Details
#body ⇒ Object
type: {
1704 1705 1706 |
# File 'lib/dsp/dsp_protocol.rb', line 1704 def body @body end |
#command ⇒ Object
type: {
1704 1705 1706 |
# File 'lib/dsp/dsp_protocol.rb', line 1704 def command @command end |
#message ⇒ Object
type: {
1704 1705 1706 |
# File 'lib/dsp/dsp_protocol.rb', line 1704 def end |
#request_seq ⇒ Object
/** Information about the data breakpoints. The array elements correspond to the elements of the input argument ‘breakpoints’ array. */
breakpoints: Breakpoint[];
}
1708 1709 1710 |
# File 'lib/dsp/dsp_protocol.rb', line 1708 def request_seq @request_seq end |
#seq ⇒ Object
type: {
1704 1705 1706 |
# File 'lib/dsp/dsp_protocol.rb', line 1704 def seq @seq end |
#success ⇒ Object
type: {
1704 1705 1706 |
# File 'lib/dsp/dsp_protocol.rb', line 1704 def success @success end |
#type ⇒ Object
type: {
1704 1705 1706 |
# File 'lib/dsp/dsp_protocol.rb', line 1704 def type @type end |
Instance Method Details
#from_h!(value) ⇒ Object
1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 |
# File 'lib/dsp/dsp_protocol.rb', line 1715 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 |