module Plaid

The Plaid API

The Plaid REST API. Please see plaid.com/docs/api for more details.

The version of the OpenAPI document: 2020-09-14_1.586.4

Generated by: openapi-generator.tech OpenAPI Generator version: 6.3.0

The Plaid API

The Plaid REST API. Please see plaid.com/docs/api for more details.

The version of the OpenAPI document: 2020-09-14_1.586.4

Generated by: openapi-generator.tech OpenAPI Generator version: 6.3.0

The Plaid API

The Plaid REST API. Please see plaid.com/docs/api for more details.

The version of the OpenAPI document: 2020-09-14_1.586.4

Generated by: openapi-generator.tech OpenAPI Generator version: 6.3.0

Constants

VERSION

Public Class Methods

configure() { |default| ... } click to toggle source

Customize default settings for the SDK using block.

Plaid.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end

If no block given, return the default Configuration object.

# File lib/plaid.rb, line 1724
def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end