Class: Mutant::License::Subscription::Commercial Private

Inherits:
Mutant::License::Subscription show all
Includes:
Unparser::AbstractType
Defined in:
lib/mutant/license/subscription/commercial.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.

Direct Known Subclasses

Individual, Organization

Defined Under Namespace

Classes: Individual, Organization

Constant Summary

Constants inherited from Mutant::License::Subscription

FAILURE_FORMAT, FORMAT

Class Method Summary collapse

Methods inherited from Mutant::License::Subscription

#description, load

Class Method Details

.from_json(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.



9
10
11
12
13
14
# File 'lib/mutant/license/subscription/commercial.rb', line 9

def self.from_json(value)
  {
    'individual'   => Individual,
    'organization' => Organization
  }.fetch(value.fetch('type', 'individual')).from_json(value)
end