mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-11-22 00:05:58 -05: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>
24 lines
1.2 KiB
Ruby
24 lines
1.2 KiB
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class IssuingService < StripeService
|
|
attr_reader :authorizations, :cards, :cardholders, :credit_underwriting_records, :disputes, :dispute_settlement_details, :personalization_designs, :physical_bundles, :tokens, :transactions
|
|
|
|
def initialize(requestor)
|
|
super(requestor)
|
|
@authorizations = Stripe::Issuing::AuthorizationService.new(@requestor)
|
|
@cards = Stripe::Issuing::CardService.new(@requestor)
|
|
@cardholders = Stripe::Issuing::CardholderService.new(@requestor)
|
|
@credit_underwriting_records = Stripe::Issuing::CreditUnderwritingRecordService
|
|
.new(@requestor)
|
|
@disputes = Stripe::Issuing::DisputeService.new(@requestor)
|
|
@dispute_settlement_details = Stripe::Issuing::DisputeSettlementDetailService.new(@requestor)
|
|
@personalization_designs = Stripe::Issuing::PersonalizationDesignService.new(@requestor)
|
|
@physical_bundles = Stripe::Issuing::PhysicalBundleService.new(@requestor)
|
|
@tokens = Stripe::Issuing::TokenService.new(@requestor)
|
|
@transactions = Stripe::Issuing::TransactionService.new(@requestor)
|
|
end
|
|
end
|
|
end
|