class Neows::Models::BaseModel

Attributes

client[RW]

Public Class Methods

new(attributes = {}) click to toggle source
Calls superclass method
# File lib/neows/models/base_model.rb, line 10
def initialize(attributes = {})
  @client = attributes.delete :client
  super(attributes)
end