2025-05-05 15:20:09 +00:00

93 lines
4.1 KiB
Ruby

# File generated from our OpenAPI spec
# frozen_string_literal: true
module Stripe
module FinancialConnections
# An institution represents a financial institution to which an end user can connect using the Financial Connections authentication flow.
class Institution < APIResource
extend Stripe::APIOperations::List
OBJECT_NAME = "financial_connections.institution"
def self.object_name
"financial_connections.institution"
end
class Features < Stripe::StripeObject
class Balances < Stripe::StripeObject
# Whether the given feature is supported by this institution.
attr_reader :supported
end
class Ownership < Stripe::StripeObject
# Whether the given feature is supported by this institution.
attr_reader :supported
end
class PaymentMethod < Stripe::StripeObject
# Whether the given feature is supported by this institution.
attr_reader :supported
end
class Transactions < Stripe::StripeObject
# Whether the given feature is supported by this institution.
attr_reader :supported
end
# Attribute for field balances
attr_reader :balances
# Attribute for field ownership
attr_reader :ownership
# Attribute for field payment_method
attr_reader :payment_method
# Attribute for field transactions
attr_reader :transactions
end
class ListParams < Stripe::RequestParams
# A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
attr_accessor :ending_before
# Specifies which fields in the response should be expanded.
attr_accessor :expand
# A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
attr_accessor :limit
# A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
attr_accessor :starting_after
def initialize(ending_before: nil, expand: nil, limit: nil, starting_after: nil)
@ending_before = ending_before
@expand = expand
@limit = limit
@starting_after = starting_after
end
end
# The list of countries supported by this institution, formatted as ISO country codes.
attr_reader :countries
# Attribute for field features
attr_reader :features
# Unique identifier for the object.
attr_reader :id
# Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
attr_reader :livemode
# The name of this institution.
attr_reader :name
# String representing the object's type. Objects of the same type share the same value.
attr_reader :object
# A list of routing numbers which are known to correspond to this institution. Due to the many to many relationship between institutions and routing numbers, this list may not be comprehensive and routing numbers may also be shared between institutions.
attr_reader :routing_numbers
# The status of this institution in the Financial Connections authentication flow.
attr_reader :status
# A URL corresponding to this institution. This URL is also displayed in the authentication flow to help end users confirm that they are authenticating with the right institution.
attr_reader :url
# Returns a list of Financial Connections Institution objects.
def self.list(params = {}, opts = {})
request_stripe_object(
method: :get,
path: "/v1/financial_connections/institutions",
params: params,
opts: opts
)
end
end
end
end