Method: Struct#as_json
- Defined in:
- lib/openc3/io/json_rpc.rb
#as_json(options = nil) ⇒ Object
38 39 40 41 42 |
# File 'lib/openc3/io/json_rpc.rb', line 38 def as_json( = nil) hash = {} self.each_pair { |k, v| hash[k.to_s] = v.as_json() } hash end |