mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
14 lines
282 B
Ruby
14 lines
282 B
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class ForwardingService < StripeService
|
|
attr_reader :requests
|
|
|
|
def initialize(requestor)
|
|
super
|
|
@requests = Stripe::Forwarding::RequestService.new(@requestor)
|
|
end
|
|
end
|
|
end
|