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.



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

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.



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

def api_key
  @api_key
end

#api_uriObject (readonly)

Returns the value of attribute api_uri.



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

def api_uri
  @api_uri
end

#timeoutObject (readonly)

Returns the value of attribute timeout.



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

def timeout
  @timeout
end

Instance Method Details

#applicationsNylas::Applications

The application resources for your Nylas application.

Returns:



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

def applications
  Applications.new(self)
end

#authNylas::Auth

The auth resources for your Nylas application.

Returns:

  • (Nylas::Auth)

    Auth resources for your Nylas application.



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

def auth
  Auth.new(self)
end

#calendarsNylas::Calendars

The calendar resources for your Nylas application.

Returns:



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

def calendars
  Calendars.new(self)
end

#eventsNylas::Events

The event resources for your Nylas application.

Returns:



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

def events
  Events.new(self)
end

#messagesNylas::Messages

The event resources for your Nylas application.

Returns:



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

def messages
  Messages.new(self)
end

#webhooksNylas::Webhooks

The webhook resources for your Nylas application.

Returns:



66
67
68
# File 'lib/nylas/client.rb', line 66

def webhooks
  Webhooks.new(self)
end