Sha256: 343ccafe8c63799a98643b8a7fecd4c03211dcea480adb7d80055a129c44ee3f

Contents?: true

Size: 322 Bytes

Versions: 61

Compression:

Stored size: 322 Bytes

Contents

# frozen_string_literal: true

module FinApps
  module REST
    class PlaidAccountPermissions < PlaidResources # :nodoc:
      def create(id)
        send_request 'p/accounts/permissions', :put, [id]
      end

      def destroy(id)
        send_request 'p/accounts/permissions', :delete, [id]
      end
    end
  end
end

Version data entries

61 entries across 61 versions & 1 rubygems

Version Path
finapps-5.0.12 lib/finapps/rest/plaid/plaid_account_permissions.rb