Skip to content

Commit

Permalink
Update generated code for v344
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed May 15, 2023
1 parent a4f5747 commit e9b060f
Show file tree
Hide file tree
Showing 46 changed files with 47 additions and 47 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v330
v344
2 changes: 1 addition & 1 deletion lib/stripe/resources/account_link.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Stripe
# Account Links are the means by which a Connect platform grants a connected account permission to access
# Stripe-hosted applications, such as Connect Onboarding.
#
# Related guide: [Connect Onboarding](https://stripe.com/docs/connect/connect-onboarding).
# Related guide: [Connect Onboarding](https://stripe.com/docs/connect/connect-onboarding)
class AccountLink < APIResource
extend Stripe::APIOperations::Create

Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/application_fee_refund.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Stripe
# has previously been created but not yet refunded. Funds will be refunded to
# the Stripe account from which the fee was originally collected.
#
# Related guide: [Refunding Application Fees](https://stripe.com/docs/connect/destination-charges#refunding-app-fee).
# Related guide: [Refunding application fees](https://stripe.com/docs/connect/destination-charges#refunding-app-fee)
class ApplicationFeeRefund < APIResource
extend Stripe::APIOperations::List
include Stripe::APIOperations::Save
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/apps/secret.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module Apps
#
# A `user` scoped secret is accessible by the app backend and one specific Dashboard user. Use the `user` scope for per-user secrets like per-user OAuth tokens, where different users might have different permissions.
#
# Related guide: [Store data between page reloads](https://stripe.com/docs/stripe-apps/store-auth-data-custom-objects).
# Related guide: [Store data between page reloads](https://stripe.com/docs/stripe-apps/store-auth-data-custom-objects)
class Secret < APIResource
extend Stripe::APIOperations::Create
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/balance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module Stripe
# The available and pending amounts for each currency are broken down further by
# payment source types.
#
# Related guide: [Understanding Connect Account Balances](https://stripe.com/docs/connect/account-balances).
# Related guide: [Understanding Connect account balances](https://stripe.com/docs/connect/account-balances)
class Balance < SingletonAPIResource
OBJECT_NAME = "balance"
end
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/balance_transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Stripe
# Balance transactions represent funds moving through your Stripe account.
# They're created for every type of transaction that comes into or flows out of your Stripe account balance.
#
# Related guide: [Balance Transaction Types](https://stripe.com/docs/reports/balance-transaction-types).
# Related guide: [Balance transaction types](https://stripe.com/docs/reports/balance-transaction-types)
class BalanceTransaction < APIResource
extend Stripe::APIOperations::List

Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/bank_account.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module Stripe
# destinations on `Account` objects for [Custom accounts](https://stripe.com/docs/connect/custom-accounts).
# They can be bank accounts or debit cards as well, and are documented in the links above.
#
# Related guide: [Bank Debits and Transfers](https://stripe.com/docs/payments/bank-debits-transfers).
# Related guide: [Bank debits and transfers](https://stripe.com/docs/payments/bank-debits-transfers)
class BankAccount < APIResource
include Stripe::APIOperations::Delete
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/capability.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
module Stripe
# This is an object representing a capability for a Stripe account.
#
# Related guide: [Account capabilities](https://stripe.com/docs/connect/account-capabilities).
# Related guide: [Account capabilities](https://stripe.com/docs/connect/account-capabilities)
class Capability < APIResource
extend Stripe::APIOperations::List
include Stripe::APIOperations::Save
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/card.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Stripe
# later. You can also store multiple debit cards on a recipient in order to
# transfer to those cards later.
#
# Related guide: [Card Payments with Sources](https://stripe.com/docs/sources/cards).
# Related guide: [Card payments with Sources](https://stripe.com/docs/sources/cards)
class Card < APIResource
include Stripe::APIOperations::Delete
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/charge.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Stripe
# retrieve and refund individual charges as well as list all charges. Charges
# are identified by a unique, random ID.
#
# Related guide: [Accept a payment with the Charges API](https://stripe.com/docs/payments/accept-a-payment-charges).
# Related guide: [Accept a payment with the Charges API](https://stripe.com/docs/payments/accept-a-payment-charges)
class Charge < APIResource
extend Stripe::APIOperations::Create
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/checkout/session.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module Checkout
# You can create a Checkout Session on your server and redirect to its URL
# to begin Checkout.
#
# Related guide: [Checkout Quickstart](https://stripe.com/docs/checkout/quickstart).
# Related guide: [Checkout quickstart](https://stripe.com/docs/checkout/quickstart)
class Session < APIResource
extend Stripe::APIOperations::Create
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/credit_note.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
module Stripe
# Issue a credit note to adjust an invoice's amount after the invoice is finalized.
#
# Related guide: [Credit Notes](https://stripe.com/docs/billing/invoices/credit-notes).
# Related guide: [Credit notes](https://stripe.com/docs/billing/invoices/credit-notes)
class CreditNote < APIResource
extend Stripe::APIOperations::Create
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/customer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
module Stripe
# This object represents a customer of your business. It lets you create recurring charges and track payments that belong to the same customer.
#
# Related guide: [Save a card during payment](https://stripe.com/docs/payments/save-during-payment).
# Related guide: [Save a card during payment](https://stripe.com/docs/payments/save-during-payment)
class Customer < APIResource
extend Stripe::APIOperations::Create
include Stripe::APIOperations::Delete
Expand Down
4 changes: 2 additions & 2 deletions lib/stripe/resources/customer_balance_transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
# frozen_string_literal: true

module Stripe
# Each customer has a [`balance`](https://stripe.com/docs/api/customers/object#customer_object-balance) value,
# Each customer has a [Balance](https://stripe.com/docs/api/customers/object#customer_object-balance) value,
# which denotes a debit or credit that's automatically applied to their next invoice upon finalization.
# You may modify the value directly by using the [update customer API](https://stripe.com/docs/api/customers/update),
# or by creating a Customer Balance Transaction, which increments or decrements the customer's `balance` by the specified `amount`.
#
# Related guide: [Customer Balance](https://stripe.com/docs/billing/customer/balance) to learn more.
# Related guide: [Customer balance](https://stripe.com/docs/billing/customer/balance)
class CustomerBalanceTransaction < APIResource
extend Stripe::APIOperations::List
include Stripe::APIOperations::Save
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/discount.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Stripe
# A discount represents the actual application of a [coupon](https://stripe.com/docs/api#coupons) or [promotion code](https://stripe.com/docs/api#promotion_codes).
# It contains information about when the discount began, when it will end, and what it is applied to.
#
# Related guide: [Applying Discounts to Subscriptions](https://stripe.com/docs/billing/subscriptions/discounts).
# Related guide: [Applying discounts to subscriptions](https://stripe.com/docs/billing/subscriptions/discounts)
class Discount < StripeObject
OBJECT_NAME = "discount"
end
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/dispute.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module Stripe
# information about the dispute process in our [Disputes and
# Fraud](https://stripe.com/docs/disputes) documentation.
#
# Related guide: [Disputes and Fraud](https://stripe.com/docs/disputes).
# Related guide: [Disputes and fraud](https://stripe.com/docs/disputes)
class Dispute < APIResource
extend Stripe::APIOperations::List
include Stripe::APIOperations::Save
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/file.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module Stripe
# been created by Stripe (for example, the results of a [Sigma scheduled
# query](https://stripe.com/docs/api#scheduled_queries)).
#
# Related guide: [File Upload Guide](https://stripe.com/docs/file-upload).
# Related guide: [File upload guide](https://stripe.com/docs/file-upload)
class File < APIResource
extend Stripe::APIOperations::Create
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/funding_instructions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Stripe
# automatically applied to future invoices and payments using the `customer_balance` payment method.
# Customers can fund this balance by initiating a bank transfer to any account in the
# `financial_addresses` field.
# Related guide: [Customer Balance - Funding Instructions](https://stripe.com/docs/payments/customer-balance/funding-instructions) to learn more
# Related guide: [Customer balance funding instructions](https://stripe.com/docs/payments/customer-balance/funding-instructions)
class FundingInstructions < APIResource
OBJECT_NAME = "funding_instructions"

Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/invoice.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module Stripe
# More details on the customer's credit balance are
# [here](https://stripe.com/docs/billing/customer/balance).
#
# Related guide: [Send Invoices to Customers](https://stripe.com/docs/billing/invoices/sending).
# Related guide: [Send invoices to customers](https://stripe.com/docs/billing/invoices/sending)
class Invoice < APIResource
extend Stripe::APIOperations::Create
include Stripe::APIOperations::Delete
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/issuing/authorization.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module Issuing
# object is created. [Authorizations](https://stripe.com/docs/issuing/purchases/authorizations) must be approved for the
# purchase to be completed successfully.
#
# Related guide: [Issued Card Authorizations](https://stripe.com/docs/issuing/purchases/authorizations).
# Related guide: [Issued card authorizations](https://stripe.com/docs/issuing/purchases/authorizations)
class Authorization < APIResource
extend Stripe::APIOperations::List
include Stripe::APIOperations::Save
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/issuing/cardholder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Stripe
module Issuing
# An Issuing `Cardholder` object represents an individual or business entity who is [issued](https://stripe.com/docs/issuing) cards.
#
# Related guide: [How to create a Cardholder](https://stripe.com/docs/issuing/cards#create-cardholder)
# Related guide: [How to create a cardholder](https://stripe.com/docs/issuing/cards#create-cardholder)
class Cardholder < APIResource
extend Stripe::APIOperations::Create
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/issuing/dispute.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Stripe
module Issuing
# As a [card issuer](https://stripe.com/docs/issuing), you can dispute transactions that the cardholder does not recognize, suspects to be fraudulent, or has other issues with.
#
# Related guide: [Disputing Transactions](https://stripe.com/docs/issuing/purchases/disputes)
# Related guide: [Issuing disputes](https://stripe.com/docs/issuing/purchases/disputes)
class Dispute < APIResource
extend Stripe::APIOperations::Create
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/issuing/transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module Issuing
# your Stripe account, such as a completed purchase or refund, is represented by an Issuing
# `Transaction` object.
#
# Related guide: [Issued Card Transactions](https://stripe.com/docs/issuing/purchases/transactions).
# Related guide: [Issued card transactions](https://stripe.com/docs/issuing/purchases/transactions)
class Transaction < APIResource
extend Stripe::APIOperations::List
include Stripe::APIOperations::Save
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/payment_intent.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module Stripe
# throughout its lifetime as it interfaces with Stripe.js to perform
# authentication flows and ultimately creates at most one successful charge.
#
# Related guide: [Payment Intents API](https://stripe.com/docs/payments/payment-intents).
# Related guide: [Payment Intents API](https://stripe.com/docs/payments/payment-intents)
class PaymentIntent < APIResource
extend Stripe::APIOperations::Create
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/payout.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module Stripe
# schedules](https://stripe.com/docs/connect/manage-payout-schedule), depending on your country and
# industry.
#
# Related guide: [Receiving Payouts](https://stripe.com/docs/payouts).
# Related guide: [Receiving payouts](https://stripe.com/docs/payouts)
class Payout < APIResource
extend Stripe::APIOperations::Create
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/person.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module Stripe
# A platform cannot access a Standard or Express account's persons after the account starts onboarding, such as after generating an account link for the account.
# See the [Standard onboarding](https://stripe.com/docs/connect/standard-accounts) or [Express onboarding documentation](https://stripe.com/docs/connect/express-accounts) for information about platform pre-filling and account onboarding steps.
#
# Related guide: [Handling Identity Verification with the API](https://stripe.com/docs/connect/identity-verification-api#person-information).
# Related guide: [Handling identity verification with the API](https://stripe.com/docs/connect/identity-verification-api#person-information)
class Person < APIResource
extend Stripe::APIOperations::List
include Stripe::APIOperations::Save
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/radar/early_fraud_warning.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Radar
# An early fraud warning indicates that the card issuer has notified us that a
# charge may be fraudulent.
#
# Related guide: [Early Fraud Warnings](https://stripe.com/docs/disputes/measuring#early-fraud-warnings).
# Related guide: [Early fraud warnings](https://stripe.com/docs/disputes/measuring#early-fraud-warnings)
class EarlyFraudWarning < APIResource
extend Stripe::APIOperations::List

Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/radar/value_list.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Stripe
module Radar
# Value lists allow you to group values together which can then be referenced in rules.
#
# Related guide: [Default Stripe Lists](https://stripe.com/docs/radar/lists#managing-list-items).
# Related guide: [Default Stripe lists](https://stripe.com/docs/radar/lists#managing-list-items)
class ValueList < APIResource
extend Stripe::APIOperations::Create
include Stripe::APIOperations::Delete
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/radar/value_list_item.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Stripe
module Radar
# Value list items allow you to add specific values to a given Radar value list, which can then be used in rules.
#
# Related guide: [Managing List Items](https://stripe.com/docs/radar/lists#managing-list-items).
# Related guide: [Managing list items](https://stripe.com/docs/radar/lists#managing-list-items)
class ValueListItem < APIResource
extend Stripe::APIOperations::Create
include Stripe::APIOperations::Delete
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/refund.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Stripe
# but not yet refunded. Funds will be refunded to the credit or debit card that
# was originally charged.
#
# Related guide: [Refunds](https://stripe.com/docs/refunds).
# Related guide: [Refunds](https://stripe.com/docs/refunds)
class Refund < APIResource
extend Stripe::APIOperations::Create
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/reversal.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module Stripe
# transfer only if the destination account has enough balance to cover the
# reversal.
#
# Related guide: [Reversing Transfers](https://stripe.com/docs/connect/charges-transfers#reversing-transfers).
# Related guide: [Reversing transfers](https://stripe.com/docs/connect/charges-transfers#reversing-transfers)
class Reversal < APIResource
extend Stripe::APIOperations::List
include Stripe::APIOperations::Save
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/setup_intent.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module Stripe
# By using SetupIntents, you ensure that your customers experience the minimum set of required friction,
# even as regulations change over time.
#
# Related guide: [Setup Intents API](https://stripe.com/docs/payments/setup-intents).
# Related guide: [Setup Intents API](https://stripe.com/docs/payments/setup-intents)
class SetupIntent < APIResource
extend Stripe::APIOperations::Create
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/subscription.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
module Stripe
# Subscriptions allow you to charge a customer on a recurring basis.
#
# Related guide: [Creating Subscriptions](https://stripe.com/docs/billing/subscriptions/creating).
# Related guide: [Creating subscriptions](https://stripe.com/docs/billing/subscriptions/creating)
class Subscription < APIResource
extend Stripe::APIOperations::Create
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/subscription_schedule.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
module Stripe
# A subscription schedule allows you to create and manage the lifecycle of a subscription by predefining expected changes.
#
# Related guide: [Subscription Schedules](https://stripe.com/docs/billing/subscriptions/subscription-schedules).
# Related guide: [Subscription schedules](https://stripe.com/docs/billing/subscriptions/subscription-schedules)
class SubscriptionSchedule < APIResource
extend Stripe::APIOperations::Create
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/tax/calculation.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Stripe
module Tax
# A Tax Calculation allows you to calculate the tax to collect from your customer.
#
# Related guide: [Calculate tax in your custom payment flow](https://stripe.com/docs/tax/custom).
# Related guide: [Calculate tax in your custom payment flow](https://stripe.com/docs/tax/custom)
class Calculation < APIResource
extend Stripe::APIOperations::Create

Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/tax/transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Stripe
module Tax
# A Tax Transaction records the tax collected from or refunded to your customer.
#
# Related guide: [Calculate tax in your custom payment flow](https://stripe.com/docs/tax/custom#tax-transaction).
# Related guide: [Calculate tax in your custom payment flow](https://stripe.com/docs/tax/custom#tax-transaction)
class Transaction < APIResource
OBJECT_NAME = "tax.transaction"

Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/tax_id.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Stripe
# You can add one or multiple tax IDs to a [customer](https://stripe.com/docs/api/customers).
# A customer's tax IDs are displayed on invoices and credit notes issued for the customer.
#
# Related guide: [Customer Tax Identification Numbers](https://stripe.com/docs/billing/taxes/tax-ids).
# Related guide: [Customer tax identification numbers](https://stripe.com/docs/billing/taxes/tax-ids)
class TaxId < APIResource
include Stripe::APIOperations::Delete
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/tax_rate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
module Stripe
# Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax.
#
# Related guide: [Tax Rates](https://stripe.com/docs/billing/taxes/tax-rates).
# Related guide: [Tax rates](https://stripe.com/docs/billing/taxes/tax-rates)
class TaxRate < APIResource
extend Stripe::APIOperations::Create
extend Stripe::APIOperations::List
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/terminal/connection_token.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Stripe
module Terminal
# A Connection Token is used by the Stripe Terminal SDK to connect to a reader.
#
# Related guide: [Fleet Management](https://stripe.com/docs/terminal/fleet/locations).
# Related guide: [Fleet management](https://stripe.com/docs/terminal/fleet/locations)
class ConnectionToken < APIResource
extend Stripe::APIOperations::Create

Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/terminal/location.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Stripe
module Terminal
# A Location represents a grouping of readers.
#
# Related guide: [Fleet Management](https://stripe.com/docs/terminal/fleet/locations).
# Related guide: [Fleet management](https://stripe.com/docs/terminal/fleet/locations)
class Location < APIResource
extend Stripe::APIOperations::Create
include Stripe::APIOperations::Delete
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/resources/terminal/reader.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Stripe
module Terminal
# A Reader represents a physical device for accepting payment details.
#
# Related guide: [Connecting to a Reader](https://stripe.com/docs/terminal/payments/connect-reader).
# Related guide: [Connecting to a reader](https://stripe.com/docs/terminal/payments/connect-reader)
class Reader < APIResource
extend Stripe::APIOperations::Create
include Stripe::APIOperations::Delete
Expand Down
Loading

0 comments on commit e9b060f

Please sign in to comment.