Method: OneApi::ObjectFieldConverter#from_json

Defined in:
lib/oneapi-ruby/objects.rb

#from_json(value) ⇒ Object



38
39
40
41
42
43
44
# File 'lib/oneapi-ruby/objects.rb', line 38

def from_json(value)
    if value == nil
        return nil
    end

    return Conversions.from_json(@classs, value, is_error=nil)
end