mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
15 lines
389 B
Ruby
15 lines
389 B
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class ReportingService < StripeService
|
|
attr_reader :report_runs, :report_types
|
|
|
|
def initialize(requestor)
|
|
super(requestor)
|
|
@report_runs = Stripe::Reporting::ReportRunService.new(@requestor)
|
|
@report_types = Stripe::Reporting::ReportTypeService.new(@requestor)
|
|
end
|
|
end
|
|
end
|