Class: Nylas::Client
- Inherits:
-
Object
- Object
- Nylas::Client
- Defined in:
- lib/nylas/client.rb
Overview
Methods to retrieve data from the Nylas API as Ruby objects.
Instance Attribute Summary collapse
-
#api_key ⇒ Object
readonly
Returns the value of attribute api_key.
-
#api_uri ⇒ Object
readonly
Returns the value of attribute api_uri.
-
#timeout ⇒ Object
readonly
Returns the value of attribute timeout.
Instance Method Summary collapse
-
#applications ⇒ Nylas::Applications
The application resources for your Nylas application.
-
#attachments ⇒ Nylas::Attachments
The attachments resources for your Nylas application.
-
#auth ⇒ Nylas::Auth
The auth resources for your Nylas application.
-
#calendars ⇒ Nylas::Calendars
The calendar resources for your Nylas application.
-
#connectors ⇒ Nylas::Connectors
The connector resources for your Nylas application.
-
#contacts ⇒ Nylas::Contacts
The contact resources for your Nylas application.
-
#drafts ⇒ Nylas::Drafts
The draft resources for your Nylas application.
-
#events ⇒ Nylas::Events
The event resources for your Nylas application.
-
#folders ⇒ Nylas::Folder
The folder resources for your Nylas application.
-
#grants ⇒ Nylas::Grants
The grants resources for your Nylas application.
-
#initialize(api_key:, api_uri: Config::DEFAULT_REGION_URL, timeout: nil) ⇒ Client
constructor
Initializes a client session.
-
#messages ⇒ Nylas::Messages
The message resources for your Nylas application.
-
#scheduler ⇒ Nylas::Scheduler
The Scheduler resources for your Nylas application.
-
#threads ⇒ Nylas::Threads
The thread resources for your Nylas application.
-
#webhooks ⇒ Nylas::Webhooks
The webhook resources for your Nylas application.
Constructor Details
#initialize(api_key:, api_uri: Config::DEFAULT_REGION_URL, timeout: nil) ⇒ Client
Initializes a client session.
27 28 29 30 31 32 33 |
# File 'lib/nylas/client.rb', line 27 def initialize(api_key:, api_uri: Config::DEFAULT_REGION_URL, timeout: nil) @api_key = api_key @api_uri = api_uri @timeout = timeout || 90 end |
Instance Attribute Details
#api_key ⇒ Object (readonly)
Returns the value of attribute api_key.
20 21 22 |
# File 'lib/nylas/client.rb', line 20 def api_key @api_key end |
#api_uri ⇒ Object (readonly)
Returns the value of attribute api_uri.
20 21 22 |
# File 'lib/nylas/client.rb', line 20 def api_uri @api_uri end |
#timeout ⇒ Object (readonly)
Returns the value of attribute timeout.
20 21 22 |
# File 'lib/nylas/client.rb', line 20 def timeout @timeout end |
Instance Method Details
#applications ⇒ Nylas::Applications
The application resources for your Nylas application.
38 39 40 |
# File 'lib/nylas/client.rb', line 38 def applications Applications.new(self) end |
#attachments ⇒ Nylas::Attachments
The attachments resources for your Nylas application.
45 46 47 |
# File 'lib/nylas/client.rb', line 45 def Attachments.new(self) end |
#auth ⇒ Nylas::Auth
The auth resources for your Nylas application.
52 53 54 |
# File 'lib/nylas/client.rb', line 52 def auth Auth.new(self) end |
#calendars ⇒ Nylas::Calendars
The calendar resources for your Nylas application.
59 60 61 |
# File 'lib/nylas/client.rb', line 59 def calendars Calendars.new(self) end |
#connectors ⇒ Nylas::Connectors
The connector resources for your Nylas application.
66 67 68 |
# File 'lib/nylas/client.rb', line 66 def connectors Connectors.new(self) end |
#contacts ⇒ Nylas::Contacts
The contact resources for your Nylas application.
73 74 75 |
# File 'lib/nylas/client.rb', line 73 def contacts Contacts.new(self) end |
#drafts ⇒ Nylas::Drafts
The draft resources for your Nylas application.
80 81 82 |
# File 'lib/nylas/client.rb', line 80 def drafts Drafts.new(self) end |
#events ⇒ Nylas::Events
The event resources for your Nylas application.
87 88 89 |
# File 'lib/nylas/client.rb', line 87 def events Events.new(self) end |
#folders ⇒ Nylas::Folder
The folder resources for your Nylas application.
94 95 96 |
# File 'lib/nylas/client.rb', line 94 def folders Folders.new(self) end |
#grants ⇒ Nylas::Grants
The grants resources for your Nylas application.
101 102 103 |
# File 'lib/nylas/client.rb', line 101 def grants Grants.new(self) end |
#messages ⇒ Nylas::Messages
The message resources for your Nylas application.
108 109 110 |
# File 'lib/nylas/client.rb', line 108 def Messages.new(self) end |
#scheduler ⇒ Nylas::Scheduler
The Scheduler resources for your Nylas application.
128 129 130 |
# File 'lib/nylas/client.rb', line 128 def scheduler Scheduler.new(self) end |
#threads ⇒ Nylas::Threads
The thread resources for your Nylas application.
115 116 117 |
# File 'lib/nylas/client.rb', line 115 def threads Threads.new(self) end |
#webhooks ⇒ Nylas::Webhooks
The webhook resources for your Nylas application.
122 123 124 |
# File 'lib/nylas/client.rb', line 122 def webhooks Webhooks.new(self) end |