mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-05 00:02:50 -04:00
* Support for APIs in the new API version 2024-09-30.acacia (#1458) * remove parseSnapshotEvent (#1463) * Bump version to 13.0.0 * Fixed API Version --------- Co-authored-by: Ramya Rao <100975018+ramya-stripe@users.noreply.github.com> Co-authored-by: Ramya Rao <ramya@stripe.com> Co-authored-by: Prathmesh Ranaut <prathmesh@stripe.com>
17 lines
607 B
Ruby
17 lines
607 B
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class FinancialConnectionsService < StripeService
|
|
attr_reader :accounts, :institutions, :sessions, :transactions
|
|
|
|
def initialize(requestor)
|
|
super(requestor)
|
|
@accounts = Stripe::FinancialConnections::AccountService.new(@requestor)
|
|
@institutions = Stripe::FinancialConnections::InstitutionService.new(@requestor)
|
|
@sessions = Stripe::FinancialConnections::SessionService.new(@requestor)
|
|
@transactions = Stripe::FinancialConnections::TransactionService.new(@requestor)
|
|
end
|
|
end
|
|
end
|