mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-07-18 00:00:44 -04:00
Compare commits
2 Commits
9953130ecf
...
e46dc21397
Author | SHA1 | Date | |
---|---|---|---|
|
e46dc21397 | ||
|
04792b3ddf |
@ -1 +1 @@
|
||||
v532
|
||||
v546
|
@ -2,10 +2,10 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module Stripe
|
||||
# This is an object representing a file hosted on Stripe's servers. The
|
||||
# file may have been uploaded by yourself using the [create file](https://stripe.com/docs/api#create_file)
|
||||
# request (for example, when uploading dispute evidence) or it may have
|
||||
# been created by Stripe (for example, the results of a [Sigma scheduled
|
||||
# This object represents files hosted on Stripe's servers. You can upload
|
||||
# files with the [create file](https://stripe.com/docs/api#create_file) request
|
||||
# (for example, when uploading dispute evidence). Stripe also
|
||||
# creates files independetly (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)
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
module Stripe
|
||||
# To share the contents of a `File` object with non-Stripe users, you can
|
||||
# create a `FileLink`. `FileLink`s contain a URL that can be used to
|
||||
# create a `FileLink`. `FileLink`s contain a URL that you can use to
|
||||
# retrieve the contents of the file without authentication.
|
||||
class FileLink < APIResource
|
||||
extend Stripe::APIOperations::Create
|
||||
|
@ -2,7 +2,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module Stripe
|
||||
# A Mandate is a record of the permission a customer has given you to debit their payment method.
|
||||
# A Mandate is a record of the permission that your customer gives you to debit their payment method.
|
||||
class Mandate < APIResource
|
||||
OBJECT_NAME = "mandate"
|
||||
end
|
||||
|
@ -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 prefilling 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/handling-api-verification#person-information)
|
||||
class Person < APIResource
|
||||
extend Stripe::APIOperations::List
|
||||
include Stripe::APIOperations::Save
|
||||
|
@ -2,10 +2,10 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
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.
|
||||
# You can add one or multiple tax IDs to a [customer](https://stripe.com/docs/api/customers) or account.
|
||||
# Customer and account tax IDs get displayed on related invoices and credit notes.
|
||||
#
|
||||
# Related guide: [Customer tax identification numbers](https://stripe.com/docs/billing/taxes/tax-ids)
|
||||
# Related guides: [Customer tax identification numbers](https://stripe.com/docs/billing/taxes/tax-ids), [Account tax IDs](https://stripe.com/docs/invoicing/connect#account-tax-ids)
|
||||
class TaxId < APIResource
|
||||
include Stripe::APIOperations::Delete
|
||||
extend Stripe::APIOperations::List
|
||||
|
Loading…
x
Reference in New Issue
Block a user