Class | Class |
In: |
lib/json.rb
|
Parent: | Object |
Returns true, if this class can be used to create an instance from a serialised JSON string. The class has to implement a class method json_create that expects a hash as first parameter, which includes the required data.
# File lib/json.rb, line 704 704: def json_creatable? 705: respond_to?(:json_create) 706: end