class Flapjack::Gateways::JSONAPI::Data::MethodDescriptor

Attributes

attributes[R]
descriptions[R]
lock_klasses[R]

Public Class Methods

new(opts = {}) click to toggle source
# File lib/flapjack/gateways/jsonapi/data/method_descriptor.rb, line 12
def initialize(opts = {})
  %w{attributes lock_klasses descriptions}.each do |a|
    instance_variable_set("@#{a}", opts[a.to_sym])
  end
end