Class used to call the LinkToken sub-product.

Methods
C
G
Instance Public methods
create(configs)
# File lib/plaid/products/link_token.rb, line 20
def create(configs)
  body = {}

  LINK_TOKEN_FIELD_NAMES.each do |field|
    body[field] = configs[field]
  end

  post_with_auth 'link/token/create',
                 CreateResponse,
                 body
end
get(link_token)
# File lib/plaid/products/link_token.rb, line 32
def get(link_token)
  post_with_auth 'link/token/get',
                 GetResponse,
                 link_token: link_token
end