lib/stripe/services/terminal_service.rb in stripe-13.2.0.pre.beta.3 vs lib/stripe/services/terminal_service.rb in stripe-13.2.0

- old
+ new

@@ -1,17 +1,16 @@ # File generated from our OpenAPI spec # frozen_string_literal: true module Stripe class TerminalService < StripeService - attr_reader :configurations, :connection_tokens, :locations, :readers, :reader_collected_data + attr_reader :configurations, :connection_tokens, :locations, :readers def initialize(requestor) super(requestor) @configurations = Stripe::Terminal::ConfigurationService.new(@requestor) @connection_tokens = Stripe::Terminal::ConnectionTokenService.new(@requestor) @locations = Stripe::Terminal::LocationService.new(@requestor) @readers = Stripe::Terminal::ReaderService.new(@requestor) - @reader_collected_data = Stripe::Terminal::ReaderCollectedDataService.new(@requestor) end end end