Class: Aws::Json::OjEngine Private

Inherits:
Object
  • Object
show all
Defined in:
lib/aws-sdk-core/json/oj_engine.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Class Method Summary collapse

Class Method Details

.dump(value) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



11
12
13
# File 'lib/aws-sdk-core/json/oj_engine.rb', line 11

def self.dump(value)
  Oj.dump(value)
end

.load(json) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



7
8
9
# File 'lib/aws-sdk-core/json/oj_engine.rb', line 7

def self.load(json)
  Oj.load(json)
end