Class: Nylas::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/nylas/client.rb

Overview

Methods to retrieve data from the Nylas API as Ruby objects.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_key:, api_uri: Config::DEFAULT_REGION_URL, timeout: nil) ⇒ Client

Initializes a client session.

Parameters:

  • api_key (String, nil)

    API key to use for the client session.

  • api_uri (String) (defaults to: Config::DEFAULT_REGION_URL)

    Client session's host.

  • timeout (String, nil) (defaults to: nil)

    Timeout value to use for the client session.



19
20
21
22
23
24
25
# File 'lib/nylas/client.rb', line 19

def initialize(api_key:,
               api_uri: Config::DEFAULT_REGION_URL,
               timeout: nil)
  @api_key = api_key
  @api_uri = api_uri
  @timeout = timeout || 30
end

Instance Attribute Details

#api_keyObject (readonly)

Returns the value of attribute api_key.



12
13
14
# File 'lib/nylas/client.rb', line 12

def api_key
  @api_key
end

#api_uriObject (readonly)

Returns the value of attribute api_uri.



12
13
14
# File 'lib/nylas/client.rb', line 12

def api_uri
  @api_uri
end

#timeoutObject (readonly)

Returns the value of attribute timeout.



12
13
14
# File 'lib/nylas/client.rb', line 12

def timeout
  @timeout
end

Instance Method Details

#applicationsNylas::Applications

The application resources for your Nylas application.

Returns:



30
31
32
# File 'lib/nylas/client.rb', line 30

def applications
  Applications.new(self)
end

#authNylas::Auth

The auth resources for your Nylas application.

Returns:

  • (Nylas::Auth)

    Auth resources for your Nylas application.



51
52
53
# File 'lib/nylas/client.rb', line 51

def auth
  Auth.new(self)
end

#calendarsNylas::Calendars

The calendar resources for your Nylas application.

Returns:



37
38
39
# File 'lib/nylas/client.rb', line 37

def calendars
  Calendars.new(self)
end

#eventsNylas::Events

The event resources for your Nylas application.

Returns:



44
45
46
# File 'lib/nylas/client.rb', line 44

def events
  Events.new(self)
end

#webhooksNylas::Webhooks

The webhook resources for your Nylas application.

Returns:



58
59
60
# File 'lib/nylas/client.rb', line 58

def webhooks
  Webhooks.new(self)
end