class Airtable::Client

Public Class Methods

new(api_key) click to toggle source
# File lib/airtable/client.rb, line 11
def initialize(api_key)
  @api_key = api_key
end

Public Instance Methods

table(app_token, worksheet_name) click to toggle source

table(“appXXV84QuCy2BPgLk”, “Sheet Name”)

# File lib/airtable/client.rb, line 16
def table(app_token, worksheet_name)
  Table.new(@api_key, app_token, worksheet_name)
end