Module: Nylas::Config

Defined in:
lib/nylas/config.rb

Overview

Configuration options for the Nylas Ruby SDK.

Constant Summary collapse

REGION_CONFIG =

The configuration options for supported regions.

{
  us: {
    nylas_api_url: "https://api.us.nylas.com"
  },
  eu: {
    nylas_api_url: "https://api.eu.nylas.com"
  }
}.freeze
DEFAULT_REGION_URL =

The default API endpoint for the Nylas API.

REGION_CONFIG[:us][:nylas_api_url]