stripe-python の API リファレンス
stripe-python (stripe/stripe-python) の公開 API 278 件 —— クラス 17、関数 1、メソッド 260。実際のソースを静的解析して抽出した正確なシグネチャを掲載しています。
リポジトリ: stripe/stripe-python
| 種別 | 件数 |
|---|---|
| クラス | 17 |
| 関数 | 1 |
| メソッド | 260 |
API 一覧
method
stripe._account.Account.create_person(account:str, **params:Unpack['AccountCreatePersonParams']) -> 'Person'Creates a new person.
method
stripe._account.Account.create_person_async(account:str, **params:Unpack['AccountCreatePersonParams']) -> 'Person'Creates a new person.
method
stripe._account.Account.list_external_accounts(account:str, **params:Unpack['AccountListExternalAccountsParams']) -> ListObject[Union['BankAccount', 'Card']]List external accounts for an account.
method
stripe._account.Account.list_external_accounts_async(account:str, **params:Unpack['AccountListExternalAccountsParams']) -> ListObject[Union['BankAccount', 'Card']]List external accounts for an account.
method
stripe._account.Account.modify_capability(account:str, capability:str, **params:Unpack['AccountModifyCapabilityParams']) -> 'Capability'Updates an existing Account Capability.
method
stripe._account.Account.modify_capability_async(account:str, capability:str, **params:Unpack['AccountModifyCapabilityParams']) -> 'Capability'Updates an existing Account Capability.
method
stripe._account.Account.modify_person(account:str, person:str, **params:Unpack['AccountModifyPersonParams']) -> 'Person'Updates an existing person.
method
stripe._account.Account.modify_person_async(account:str, person:str, **params:Unpack['AccountModifyPersonParams']) -> 'Person'Updates an existing person.
method
stripe._account.Account.retrieve_person(account:str, person:str, **params:Unpack['AccountRetrievePersonParams']) -> 'Person'Retrieves an existing person.
method
stripe._account.Account.retrieve_person_async(account:str, person:str, **params:Unpack['AccountRetrievePersonParams']) -> 'Person'Retrieves an existing person.
class
stripe._any_iterator.AnyIteratorAnyIterator supports iteration through both `for ...
class
stripe._balance.BalanceThis is an object representing your Stripe balance.
method
stripe._card.Card.delete(sid:str, **params:Unpack['CardDeleteParams']) -> Union['BankAccount', 'Card']Delete a specified external account for a given account.
class
stripe._cash_balance.CashBalanceA customer's `Cash balance` represents real funds.
class
stripe._credit_note_line_item.CreditNoteLineItemThe credit note line item object
class
stripe._customer.CustomerThis object represents a customer of your business.
method
stripe._customer.Customer.create(**params:Unpack['CustomerCreateParams']) -> 'Customer'Creates a new customer object.
method
stripe._customer.Customer.create_async(**params:Unpack['CustomerCreateParams']) -> 'Customer'Creates a new customer object.
method
stripe._customer.Customer.create_tax_id(customer:str, **params:Unpack['CustomerCreateTaxIdParams']) -> 'TaxId'Creates a new tax_id object for a customer.
method
stripe._customer.Customer.create_tax_id_async(customer:str, **params:Unpack['CustomerCreateTaxIdParams']) -> 'TaxId'Creates a new tax_id object for a customer.
method
stripe._customer.Customer.delete(sid:str, **params:Unpack['CustomerDeleteParams']) -> 'Customer'Permanently deletes a customer.
method
stripe._customer.Customer.delete_async(sid:str, **params:Unpack['CustomerDeleteParams']) -> 'Customer'Permanently deletes a customer.
method
stripe._customer.Customer.delete_discount(customer:str, **params:Unpack['CustomerDeleteDiscountParams']) -> 'Discount'Removes the currently applied discount on a customer.
method
stripe._customer.Customer.delete_tax_id(customer:str, id:str, **params:Unpack['CustomerDeleteTaxIdParams']) -> 'TaxId'Deletes an existing tax_id object.
method
stripe._customer.Customer.delete_tax_id_async(customer:str, id:str, **params:Unpack['CustomerDeleteTaxIdParams']) -> 'TaxId'Deletes an existing tax_id object.
method
stripe._customer.Customer.list(**params:Unpack['CustomerListParams']) -> ListObject['Customer']Returns a list of your customers.
method
stripe._customer.Customer.list_async(**params:Unpack['CustomerListParams']) -> ListObject['Customer']Returns a list of your customers.
method
stripe._customer.Customer.list_sources(customer:str, **params:Unpack['CustomerListSourcesParams']) -> ListObject[Union['Account', 'BankAccount', 'Card', 'Source']]List sources for a specified customer.
method
stripe._customer.Customer.list_tax_ids(customer:str, **params:Unpack['CustomerListTaxIdsParams']) -> ListObject['TaxId']Returns a list of tax IDs for a customer.
method
stripe._customer.Customer.list_tax_ids_async(customer:str, **params:Unpack['CustomerListTaxIdsParams']) -> ListObject['TaxId']Returns a list of tax IDs for a customer.
method
stripe._customer.Customer.modify_cash_balance(customer:str, **params:Unpack['CustomerModifyCashBalanceParams']) -> 'CashBalance'Changes the settings on a customer's cash balance.
method
stripe._customer.Customer.retrieve(id:str, **params:Unpack['CustomerRetrieveParams']) -> 'Customer'Retrieves a Customer object.
method
stripe._customer.Customer.retrieve_async(id:str, **params:Unpack['CustomerRetrieveParams']) -> 'Customer'Retrieves a Customer object.
method
stripe._customer.Customer.retrieve_cash_balance(customer:str, **params:Unpack['CustomerRetrieveCashBalanceParams']) -> 'CashBalance'Retrieves a customer's cash balance.
method
stripe._customer.Customer.retrieve_cash_balance_async(customer:str, **params:Unpack['CustomerRetrieveCashBalanceParams']) -> 'CashBalance'Retrieves a customer's cash balance.
method
stripe._customer_service.CustomerService.create(params:Optional['CustomerCreateParams']=None, options:Optional['RequestOptions']=None) -> 'Customer'Creates a new customer object.
method
stripe._customer_service.CustomerService.create_async(params:Optional['CustomerCreateParams']=None, options:Optional['RequestOptions']=None) -> 'Customer'Creates a new customer object.
method
stripe._customer_service.CustomerService.delete(customer:str, params:Optional['CustomerDeleteParams']=None, options:Optional['RequestOptions']=None) -> 'Customer'Permanently deletes a customer.
method
stripe._customer_service.CustomerService.delete_async(customer:str, params:Optional['CustomerDeleteParams']=None, options:Optional['RequestOptions']=None) -> 'Customer'Permanently deletes a customer.
method
stripe._customer_service.CustomerService.list(params:Optional['CustomerListParams']=None, options:Optional['RequestOptions']=None) -> 'ListObject[Customer]'Returns a list of your customers.
method
stripe._customer_service.CustomerService.list_async(params:Optional['CustomerListParams']=None, options:Optional['RequestOptions']=None) -> 'ListObject[Customer]'Returns a list of your customers.
method
stripe._customer_service.CustomerService.retrieve(customer:str, params:Optional['CustomerRetrieveParams']=None, options:Optional['RequestOptions']=None) -> 'Customer'Retrieves a Customer object.
method
stripe._customer_service.CustomerService.retrieve_async(customer:str, params:Optional['CustomerRetrieveParams']=None, options:Optional['RequestOptions']=None) -> 'Customer'Retrieves a Customer object.
method
stripe._event.Event.list(**params:Unpack['EventListParams']) -> ListObject['Event']List events, going back up to 30 days.
method
stripe._event.Event.list_async(**params:Unpack['EventListParams']) -> ListObject['Event']List events, going back up to 30 days.
class
stripe._exchange_rate.ExchangeRate[Deprecated] The `ExchangeRate` APIs are deprecated.
method
stripe._exchange_rate.ExchangeRate.list(**params:Unpack['ExchangeRateListParams']) -> ListObject['ExchangeRate'][Deprecated] The ExchangeRate APIs are deprecated.
method
stripe._exchange_rate.ExchangeRate.list_async(**params:Unpack['ExchangeRateListParams']) -> ListObject['ExchangeRate'][Deprecated] The ExchangeRate APIs are deprecated.
method
stripe._exchange_rate.ExchangeRate.retrieve(id:str, **params:Unpack['ExchangeRateRetrieveParams']) -> 'ExchangeRate'[Deprecated] The ExchangeRate APIs are deprecated.
method
stripe._exchange_rate.ExchangeRate.retrieve_async(id:str, **params:Unpack['ExchangeRateRetrieveParams']) -> 'ExchangeRate'[Deprecated] The ExchangeRate APIs are deprecated.
class
stripe._file.FileThis object represents files hosted on Stripe's servers.
method
stripe._file.File.list(**params:Unpack['FileListParams']) -> ListObject['File']Returns a list of the files that your account has access to.
method
stripe._file.File.list_async(**params:Unpack['FileListParams']) -> ListObject['File']Returns a list of the files that your account has access to.
method
stripe._file.File.retrieve(id:str, **params:Unpack['FileRetrieveParams']) -> 'File'Retrieves the details of an existing file object.
method
stripe._file.File.retrieve_async(id:str, **params:Unpack['FileRetrieveParams']) -> 'File'Retrieves the details of an existing file object.
method
stripe._file_link.FileLink.create(**params:Unpack['FileLinkCreateParams']) -> 'FileLink'Creates a new file link object.
method
stripe._file_link.FileLink.create_async(**params:Unpack['FileLinkCreateParams']) -> 'FileLink'Creates a new file link object.
method
stripe._file_link.FileLink.list(**params:Unpack['FileLinkListParams']) -> ListObject['FileLink']Returns a list of file links.
method
stripe._file_link.FileLink.list_async(**params:Unpack['FileLinkListParams']) -> ListObject['FileLink']Returns a list of file links.
method
stripe._file_link.FileLink.modify(id:str, **params:Unpack['FileLinkModifyParams']) -> 'FileLink'Updates an existing file link object.
method
stripe._file_link.FileLink.modify_async(id:str, **params:Unpack['FileLinkModifyParams']) -> 'FileLink'Updates an existing file link object.
method
stripe._file_link.FileLink.retrieve(id:str, **params:Unpack['FileLinkRetrieveParams']) -> 'FileLink'Retrieves the file link with the given ID.
method
stripe._file_link.FileLink.retrieve_async(id:str, **params:Unpack['FileLinkRetrieveParams']) -> 'FileLink'Retrieves the file link with the given ID.
class
stripe._http_client.HTTPClientBase HTTP client that custom clients can inherit from.
method
stripe._invoice.Invoice.add_lines(invoice:str, **params:Unpack['InvoiceAddLinesParams']) -> 'Invoice'Adds multiple line items to an invoice.
method
stripe._invoice.Invoice.add_lines_async(invoice:str, **params:Unpack['InvoiceAddLinesParams']) -> 'Invoice'Adds multiple line items to an invoice.
method
stripe._invoice.Invoice.create(**params:Unpack['InvoiceCreateParams']) -> 'Invoice'This endpoint creates a draft invoice for a given customer.
method
stripe._invoice.Invoice.create_async(**params:Unpack['InvoiceCreateParams']) -> 'Invoice'This endpoint creates a draft invoice for a given customer.
method
stripe._invoice.Invoice.delete(sid:str, **params:Unpack['InvoiceDeleteParams']) -> 'Invoice'Permanently deletes a one-off invoice draft.
method
stripe._invoice.Invoice.delete_async(sid:str, **params:Unpack['InvoiceDeleteParams']) -> 'Invoice'Permanently deletes a one-off invoice draft.
method
stripe._invoice.Invoice.modify(id:str, **params:Unpack['InvoiceModifyParams']) -> 'Invoice'Draft invoices are fully editable.
method
stripe._invoice.Invoice.modify_async(id:str, **params:Unpack['InvoiceModifyParams']) -> 'Invoice'Draft invoices are fully editable.
method
stripe._invoice.Invoice.remove_lines(invoice:str, **params:Unpack['InvoiceRemoveLinesParams']) -> 'Invoice'Removes multiple line items from an invoice.
method
stripe._invoice.Invoice.remove_lines_async(invoice:str, **params:Unpack['InvoiceRemoveLinesParams']) -> 'Invoice'Removes multiple line items from an invoice.
method
stripe._invoice.Invoice.retrieve(id:str, **params:Unpack['InvoiceRetrieveParams']) -> 'Invoice'Retrieves the invoice with the given ID.
method
stripe._invoice.Invoice.retrieve_async(id:str, **params:Unpack['InvoiceRetrieveParams']) -> 'Invoice'Retrieves the invoice with the given ID.
method
stripe._invoice.Invoice.update_lines(invoice:str, **params:Unpack['InvoiceUpdateLinesParams']) -> 'Invoice'Updates multiple line items on an invoice.
method
stripe._invoice.Invoice.update_lines_async(invoice:str, **params:Unpack['InvoiceUpdateLinesParams']) -> 'Invoice'Updates multiple line items on an invoice.
method
stripe._invoice.Invoice.void_invoice(invoice:str, **params:Unpack['InvoiceVoidInvoiceParams']) -> 'Invoice'Mark a finalized invoice as void.
method
stripe._invoice.Invoice.void_invoice_async(invoice:str, **params:Unpack['InvoiceVoidInvoiceParams']) -> 'Invoice'Mark a finalized invoice as void.
class
stripe._invoice_payment.InvoicePaymentInvoice Payments represent payments made against invoices.
method
stripe._invoice_payment.InvoicePayment.retrieve(id:str, **params:Unpack['InvoicePaymentRetrieveParams']) -> 'InvoicePayment'Retrieves the invoice payment with the given ID.
method
stripe._invoice_payment.InvoicePayment.retrieve_async(id:str, **params:Unpack['InvoicePaymentRetrieveParams']) -> 'InvoicePayment'Retrieves the invoice payment with the given ID.
class
stripe._line_item.LineItemA line item.
method
stripe._plan.Plan.delete(sid:str, **params:Unpack['PlanDeleteParams']) -> 'Plan'Deleting plans means new subscribers can't be added.
method
stripe._plan.Plan.delete_async(sid:str, **params:Unpack['PlanDeleteParams']) -> 'Plan'Deleting plans means new subscribers can't be added.
method
stripe._plan.Plan.list(**params:Unpack['PlanListParams']) -> ListObject['Plan']Returns a list of your plans.
method
stripe._plan.Plan.list_async(**params:Unpack['PlanListParams']) -> ListObject['Plan']Returns a list of your plans.
method
stripe._plan.Plan.retrieve(id:str, **params:Unpack['PlanRetrieveParams']) -> 'Plan'Retrieves the plan with the given ID.
method
stripe._plan.Plan.retrieve_async(id:str, **params:Unpack['PlanRetrieveParams']) -> 'Plan'Retrieves the plan with the given ID.
method
stripe._price.Price.retrieve(id:str, **params:Unpack['PriceRetrieveParams']) -> 'Price'Retrieves the price with the given ID.
method
stripe._price.Price.retrieve_async(id:str, **params:Unpack['PriceRetrieveParams']) -> 'Price'Retrieves the price with the given ID.
method
stripe._product.Product.create(**params:Unpack['ProductCreateParams']) -> 'Product'Creates a new product object.
method
stripe._product.Product.create_async(**params:Unpack['ProductCreateParams']) -> 'Product'Creates a new product object.
method
stripe._product.Product.delete(sid:str, **params:Unpack['ProductDeleteParams']) -> 'Product'Delete a product.
method
stripe._product.Product.delete_async(sid:str, **params:Unpack['ProductDeleteParams']) -> 'Product'Delete a product.
method
stripe._product.Product.delete_feature(product:str, id:str, **params:Unpack['ProductDeleteFeatureParams']) -> 'ProductFeature'Deletes the feature attachment to a product
method
stripe._product.Product.delete_feature_async(product:str, id:str, **params:Unpack['ProductDeleteFeatureParams']) -> 'ProductFeature'Deletes the feature attachment to a product
method
stripe._product.Product.list(**params:Unpack['ProductListParams']) -> ListObject['Product']Returns a list of your products.
method
stripe._product.Product.list_async(**params:Unpack['ProductListParams']) -> ListObject['Product']Returns a list of your products.
method
stripe._product.Product.list_features(product:str, **params:Unpack['ProductListFeaturesParams']) -> ListObject['ProductFeature']Retrieve a list of features for a product
method
stripe._product.Product.list_features_async(product:str, **params:Unpack['ProductListFeaturesParams']) -> ListObject['ProductFeature']Retrieve a list of features for a product
method
stripe._product.Product.retrieve(id:str, **params:Unpack['ProductRetrieveParams']) -> 'Product'Retrieves the details of an existing product.
method
stripe._product.Product.retrieve_async(id:str, **params:Unpack['ProductRetrieveParams']) -> 'Product'Retrieves the details of an existing product.
method
stripe._review.Review.list(**params:Unpack['ReviewListParams']) -> ListObject['Review']Returns a list of Review objects that have open set to true.
method
stripe._review.Review.retrieve(id:str, **params:Unpack['ReviewRetrieveParams']) -> 'Review'Retrieves a Review object.
method
stripe._review.Review.retrieve_async(id:str, **params:Unpack['ReviewRetrieveParams']) -> 'Review'Retrieves a Review object.
method
stripe._source.Source.create(**params:Unpack['SourceCreateParams']) -> 'Source'Creates a new source object.
method
stripe._source.Source.create_async(**params:Unpack['SourceCreateParams']) -> 'Source'Creates a new source object.
method
stripe._source.Source.list_source_transactions(source:str, **params:Unpack['SourceListSourceTransactionsParams']) -> ListObject['SourceTransaction']List source transactions for a given source.
method
stripe._source.Source.retrieve(id:str, **params:Unpack['SourceRetrieveParams']) -> 'Source'Retrieves an existing source object.
method
stripe._source.Source.retrieve_async(id:str, **params:Unpack['SourceRetrieveParams']) -> 'Source'Retrieves an existing source object.
method
stripe._source.Source.verify(source:str, **params:Unpack['SourceVerifyParams']) -> 'Source'Verify a given source.
method
stripe._source.Source.verify_async(source:str, **params:Unpack['SourceVerifyParams']) -> 'Source'Verify a given source.
method
stripe._subscription.Subscription.cancel(subscription_exposed_id:str, **params:Unpack['SubscriptionCancelParams']) -> 'Subscription'Cancels a customer's subscription immediately.
method
stripe._subscription.Subscription.cancel_async(subscription_exposed_id:str, **params:Unpack['SubscriptionCancelParams']) -> 'Subscription'Cancels a customer's subscription immediately.
method
stripe._subscription.Subscription.create(**params:Unpack['SubscriptionCreateParams']) -> 'Subscription'Creates a new subscription on an existing customer.
method
stripe._subscription.Subscription.create_async(**params:Unpack['SubscriptionCreateParams']) -> 'Subscription'Creates a new subscription on an existing customer.
method
stripe._subscription.Subscription.retrieve(id:str, **params:Unpack['SubscriptionRetrieveParams']) -> 'Subscription'Retrieves the subscription with the given ID.
method
stripe._subscription.Subscription.retrieve_async(id:str, **params:Unpack['SubscriptionRetrieveParams']) -> 'Subscription'Retrieves the subscription with the given ID.
class
stripe._test_helpers.APIResourceTestHelpersThe base type for the TestHelper nested classes.
method
stripe._token.Token.retrieve(id:str, **params:Unpack['TokenRetrieveParams']) -> 'Token'Retrieves the token with the given ID.
method
stripe._token.Token.retrieve_async(id:str, **params:Unpack['TokenRetrieveParams']) -> 'Token'Retrieves the token with the given ID.
class
stripe._topup.TopupTo top up your Stripe balance, you create a top-up object.
method
stripe._topup.Topup.cancel(topup:str, **params:Unpack['TopupCancelParams']) -> 'Topup'Cancels a top-up.
method
stripe._topup.Topup.cancel_async(topup:str, **params:Unpack['TopupCancelParams']) -> 'Topup'Cancels a top-up.
method
stripe._topup.Topup.create(**params:Unpack['TopupCreateParams']) -> 'Topup'Top up the balance of an account
method
stripe._topup.Topup.create_async(**params:Unpack['TopupCreateParams']) -> 'Topup'Top up the balance of an account
method
stripe._topup.Topup.list(**params:Unpack['TopupListParams']) -> ListObject['Topup']Returns a list of top-ups.
method
stripe._topup.Topup.list_async(**params:Unpack['TopupListParams']) -> ListObject['Topup']Returns a list of top-ups.
method
stripe._topup.Topup.modify(id:str, **params:Unpack['TopupModifyParams']) -> 'Topup'Updates the metadata of a top-up.
method
stripe._topup.Topup.modify_async(id:str, **params:Unpack['TopupModifyParams']) -> 'Topup'Updates the metadata of a top-up.
func
stripe._webhook.build_v1_event(values:Dict[str, Any], requestor:_APIRequestor) -> EventInternal helper for centralizing v1 event creation
method
stripe.apps._secret.Secret.create(**params:Unpack['SecretCreateParams']) -> 'Secret'Create or replace a secret in the secret store.
method
stripe.apps._secret.Secret.create_async(**params:Unpack['SecretCreateParams']) -> 'Secret'Create or replace a secret in the secret store.
method
stripe.apps._secret.Secret.delete_where(**params:Unpack['SecretDeleteWhereParams']) -> 'Secret'Deletes a secret from the secret store by name and scope.
method
stripe.apps._secret.Secret.find(**params:Unpack['SecretFindParams']) -> 'Secret'Finds a secret in the secret store by name and scope.
method
stripe.apps._secret.Secret.find_async(**params:Unpack['SecretFindParams']) -> 'Secret'Finds a secret in the secret store by name and scope.
method
stripe.apps._secret.Secret.list(**params:Unpack['SecretListParams']) -> ListObject['Secret']List all secrets stored on the given scope.
method
stripe.apps._secret.Secret.list_async(**params:Unpack['SecretListParams']) -> ListObject['Secret']List all secrets stored on the given scope.
method
stripe.apps._secret_service.SecretService.create(params:'SecretCreateParams', options:Optional['RequestOptions']=None) -> 'Secret'Create or replace a secret in the secret store.
method
stripe.apps._secret_service.SecretService.create_async(params:'SecretCreateParams', options:Optional['RequestOptions']=None) -> 'Secret'Create or replace a secret in the secret store.
method
stripe.apps._secret_service.SecretService.list(params:'SecretListParams', options:Optional['RequestOptions']=None) -> 'ListObject[Secret]'List all secrets stored on the given scope.
method
stripe.apps._secret_service.SecretService.list_async(params:'SecretListParams', options:Optional['RequestOptions']=None) -> 'ListObject[Secret]'List all secrets stored on the given scope.
method
stripe.billing._alert.Alert.activate(id:str, **params:Unpack['AlertActivateParams']) -> 'Alert'Reactivates this alert, allowing it to trigger again.
method
stripe.billing._alert.Alert.activate_async(id:str, **params:Unpack['AlertActivateParams']) -> 'Alert'Reactivates this alert, allowing it to trigger again.
method
stripe.billing._alert.Alert.create(**params:Unpack['AlertCreateParams']) -> 'Alert'Creates a billing alert
method
stripe.billing._alert.Alert.create_async(**params:Unpack['AlertCreateParams']) -> 'Alert'Creates a billing alert
method
stripe.billing._alert.Alert.deactivate(id:str, **params:Unpack['AlertDeactivateParams']) -> 'Alert'Deactivates this alert, preventing it from triggering.
method
stripe.billing._alert.Alert.deactivate_async(id:str, **params:Unpack['AlertDeactivateParams']) -> 'Alert'Deactivates this alert, preventing it from triggering.
method
stripe.billing._alert.Alert.list(**params:Unpack['AlertListParams']) -> ListObject['Alert']Lists billing active and inactive alerts
method
stripe.billing._alert.Alert.list_async(**params:Unpack['AlertListParams']) -> ListObject['Alert']Lists billing active and inactive alerts
method
stripe.billing._alert.Alert.retrieve(id:str, **params:Unpack['AlertRetrieveParams']) -> 'Alert'Retrieves a billing alert given an ID
method
stripe.billing._alert.Alert.retrieve_async(id:str, **params:Unpack['AlertRetrieveParams']) -> 'Alert'Retrieves a billing alert given an ID
method
stripe.billing._meter.Meter.create(**params:Unpack['MeterCreateParams']) -> 'Meter'Creates a billing meter.
method
stripe.billing._meter.Meter.create_async(**params:Unpack['MeterCreateParams']) -> 'Meter'Creates a billing meter.
method
stripe.billing._meter.Meter.list(**params:Unpack['MeterListParams']) -> ListObject['Meter']Retrieve a list of billing meters.
method
stripe.billing._meter.Meter.list_async(**params:Unpack['MeterListParams']) -> ListObject['Meter']Retrieve a list of billing meters.
method
stripe.billing._meter.Meter.modify(id:str, **params:Unpack['MeterModifyParams']) -> 'Meter'Updates a billing meter.
method
stripe.billing._meter.Meter.modify_async(id:str, **params:Unpack['MeterModifyParams']) -> 'Meter'Updates a billing meter.
method
stripe.billing._meter.Meter.retrieve(id:str, **params:Unpack['MeterRetrieveParams']) -> 'Meter'Retrieves a billing meter given an ID.
method
stripe.billing._meter.Meter.retrieve_async(id:str, **params:Unpack['MeterRetrieveParams']) -> 'Meter'Retrieves a billing meter given an ID.
method
stripe.billing_portal._session.Session.create(**params:Unpack['SessionCreateParams']) -> 'Session'Creates a session of the customer portal.
method
stripe.billing_portal._session.Session.create_async(**params:Unpack['SessionCreateParams']) -> 'Session'Creates a session of the customer portal.
method
stripe.checkout._session.Session.create(**params:Unpack['SessionCreateParams']) -> 'Session'Creates a Checkout Session object.
method
stripe.checkout._session.Session.create_async(**params:Unpack['SessionCreateParams']) -> 'Session'Creates a Checkout Session object.
method
stripe.checkout._session.Session.list(**params:Unpack['SessionListParams']) -> ListObject['Session']Returns a list of Checkout Sessions.
method
stripe.checkout._session.Session.list_async(**params:Unpack['SessionListParams']) -> ListObject['Session']Returns a list of Checkout Sessions.
method
stripe.checkout._session.Session.modify(id:str, **params:Unpack['SessionModifyParams']) -> 'Session'Updates a Checkout Session object.
method
stripe.checkout._session.Session.modify_async(id:str, **params:Unpack['SessionModifyParams']) -> 'Session'Updates a Checkout Session object.
method
stripe.checkout._session.Session.retrieve(id:str, **params:Unpack['SessionRetrieveParams']) -> 'Session'Retrieves a Checkout Session object.
method
stripe.checkout._session.Session.retrieve_async(id:str, **params:Unpack['SessionRetrieveParams']) -> 'Session'Retrieves a Checkout Session object.
method
stripe.climate._order.Order.cancel(order:str, **params:Unpack['OrderCancelParams']) -> 'Order'Cancels a Climate order.
method
stripe.climate._order.Order.cancel_async(order:str, **params:Unpack['OrderCancelParams']) -> 'Order'Cancels a Climate order.
method
stripe.climate._order.Order.create(**params:Unpack['OrderCreateParams']) -> 'Order'Creates a Climate order object for a given Climate product.
method
stripe.climate._order.Order.create_async(**params:Unpack['OrderCreateParams']) -> 'Order'Creates a Climate order object for a given Climate product.
method
stripe.climate._order.Order.list(**params:Unpack['OrderListParams']) -> ListObject['Order']Lists all Climate order objects.
method
stripe.climate._order.Order.list_async(**params:Unpack['OrderListParams']) -> ListObject['Order']Lists all Climate order objects.
method
stripe.climate._product.Product.list(**params:Unpack['ProductListParams']) -> ListObject['Product']Lists all available Climate product objects.
method
stripe.climate._product.Product.list_async(**params:Unpack['ProductListParams']) -> ListObject['Product']Lists all available Climate product objects.
class
stripe.climate._supplier.SupplierA supplier of carbon removal.
method
stripe.climate._supplier.Supplier.list(**params:Unpack['SupplierListParams']) -> ListObject['Supplier']Lists all available Climate supplier objects.
method
stripe.climate._supplier.Supplier.list_async(**params:Unpack['SupplierListParams']) -> ListObject['Supplier']Lists all available Climate supplier objects.
method
stripe.climate._supplier.Supplier.retrieve(id:str, **params:Unpack['SupplierRetrieveParams']) -> 'Supplier'Retrieves a Climate supplier object.
method
stripe.climate._supplier.Supplier.retrieve_async(id:str, **params:Unpack['SupplierRetrieveParams']) -> 'Supplier'Retrieves a Climate supplier object.
class
stripe.entitlements._active_entitlement_summary.ActiveEntitlementSummaryA summary of a customer's active entitlements.
method
stripe.entitlements._feature.Feature.create(**params:Unpack['FeatureCreateParams']) -> 'Feature'Creates a feature
method
stripe.entitlements._feature.Feature.create_async(**params:Unpack['FeatureCreateParams']) -> 'Feature'Creates a feature
method
stripe.entitlements._feature.Feature.list(**params:Unpack['FeatureListParams']) -> ListObject['Feature']Retrieve a list of features
method
stripe.entitlements._feature.Feature.list_async(**params:Unpack['FeatureListParams']) -> ListObject['Feature']Retrieve a list of features
method
stripe.entitlements._feature.Feature.retrieve(id:str, **params:Unpack['FeatureRetrieveParams']) -> 'Feature'Retrieves a feature
method
stripe.entitlements._feature.Feature.retrieve_async(id:str, **params:Unpack['FeatureRetrieveParams']) -> 'Feature'Retrieves a feature
method
stripe.financial_connections._account.Account.list_owners(account:str, **params:Unpack['AccountListOwnersParams']) -> ListObject['AccountOwner']Lists all owners for a given Account
method
stripe.financial_connections._account.Account.list_owners_async(account:str, **params:Unpack['AccountListOwnersParams']) -> ListObject['AccountOwner']Lists all owners for a given Account
class
stripe.financial_connections._account_owner.AccountOwnerDescribes an owner of an account.
method
stripe.forwarding._request.Request.create(**params:Unpack['RequestCreateParams']) -> 'Request'Creates a ForwardingRequest object.
method
stripe.forwarding._request.Request.create_async(**params:Unpack['RequestCreateParams']) -> 'Request'Creates a ForwardingRequest object.
method
stripe.forwarding._request.Request.list(**params:Unpack['RequestListParams']) -> ListObject['Request']Lists all ForwardingRequest objects.
method
stripe.forwarding._request.Request.list_async(**params:Unpack['RequestListParams']) -> ListObject['Request']Lists all ForwardingRequest objects.
method
stripe.forwarding._request.Request.retrieve(id:str, **params:Unpack['RequestRetrieveParams']) -> 'Request'Retrieves a ForwardingRequest object.
method
stripe.forwarding._request.Request.retrieve_async(id:str, **params:Unpack['RequestRetrieveParams']) -> 'Request'Retrieves a ForwardingRequest object.
method
stripe.issuing._authorization.Authorization.list(**params:Unpack['AuthorizationListParams']) -> ListObject['Authorization']Returns a list of Issuing Authorization objects.
method
stripe.issuing._authorization.Authorization.retrieve(id:str, **params:Unpack['AuthorizationRetrieveParams']) -> 'Authorization'Retrieves an Issuing Authorization object.
method
stripe.issuing._authorization.Authorization.retrieve_async(id:str, **params:Unpack['AuthorizationRetrieveParams']) -> 'Authorization'Retrieves an Issuing Authorization object.
method
stripe.issuing._card.Card.create(**params:Unpack['CardCreateParams']) -> 'Card'Creates an Issuing Card object.
method
stripe.issuing._card.Card.create_async(**params:Unpack['CardCreateParams']) -> 'Card'Creates an Issuing Card object.
method
stripe.issuing._card.Card.list(**params:Unpack['CardListParams']) -> ListObject['Card']Returns a list of Issuing Card objects.
method
stripe.issuing._card.Card.list_async(**params:Unpack['CardListParams']) -> ListObject['Card']Returns a list of Issuing Card objects.
method
stripe.issuing._card.Card.retrieve(id:str, **params:Unpack['CardRetrieveParams']) -> 'Card'Retrieves an Issuing Card object.
method
stripe.issuing._card.Card.retrieve_async(id:str, **params:Unpack['CardRetrieveParams']) -> 'Card'Retrieves an Issuing Card object.
method
stripe.issuing._token.Token.list(**params:Unpack['TokenListParams']) -> ListObject['Token']Lists all Issuing Token objects for a given card.
method
stripe.issuing._token.Token.list_async(**params:Unpack['TokenListParams']) -> ListObject['Token']Lists all Issuing Token objects for a given card.
method
stripe.issuing._token.Token.retrieve(id:str, **params:Unpack['TokenRetrieveParams']) -> 'Token'Retrieves an Issuing Token object.
method
stripe.issuing._token.Token.retrieve_async(id:str, **params:Unpack['TokenRetrieveParams']) -> 'Token'Retrieves an Issuing Token object.
method
stripe.issuing._transaction.Transaction.list(**params:Unpack['TransactionListParams']) -> ListObject['Transaction']Returns a list of Issuing Transaction objects.
method
stripe.issuing._transaction.Transaction.list_async(**params:Unpack['TransactionListParams']) -> ListObject['Transaction']Returns a list of Issuing Transaction objects.
method
stripe.issuing._transaction.Transaction.retrieve(id:str, **params:Unpack['TransactionRetrieveParams']) -> 'Transaction'Retrieves an Issuing Transaction object.
method
stripe.issuing._transaction.Transaction.retrieve_async(id:str, **params:Unpack['TransactionRetrieveParams']) -> 'Transaction'Retrieves an Issuing Transaction object.
method
stripe.reporting._report_type.ReportType.list(**params:Unpack['ReportTypeListParams']) -> ListObject['ReportType']Returns a full list of Report Types.
method
stripe.reporting._report_type.ReportType.list_async(**params:Unpack['ReportTypeListParams']) -> ListObject['ReportType']Returns a full list of Report Types.
method
stripe.reporting._report_type.ReportType.retrieve(id:str, **params:Unpack['ReportTypeRetrieveParams']) -> 'ReportType'Retrieves the details of a Report Type.
method
stripe.reporting._report_type.ReportType.retrieve_async(id:str, **params:Unpack['ReportTypeRetrieveParams']) -> 'ReportType'Retrieves the details of a Report Type.
method
stripe.tax._registration.Registration.create(**params:Unpack['RegistrationCreateParams']) -> 'Registration'Creates a new Tax Registration object.
method
stripe.tax._registration.Registration.create_async(**params:Unpack['RegistrationCreateParams']) -> 'Registration'Creates a new Tax Registration object.
method
stripe.tax._registration.Registration.list(**params:Unpack['RegistrationListParams']) -> ListObject['Registration']Returns a list of Tax Registration objects.
method
stripe.tax._registration.Registration.list_async(**params:Unpack['RegistrationListParams']) -> ListObject['Registration']Returns a list of Tax Registration objects.
method
stripe.tax._registration.Registration.modify(id:str, **params:Unpack['RegistrationModifyParams']) -> 'Registration'Updates an existing Tax Registration object.
method
stripe.tax._registration.Registration.modify_async(id:str, **params:Unpack['RegistrationModifyParams']) -> 'Registration'Updates an existing Tax Registration object.
method
stripe.tax._registration.Registration.retrieve(id:str, **params:Unpack['RegistrationRetrieveParams']) -> 'Registration'Returns a Tax Registration object.
method
stripe.tax._registration.Registration.retrieve_async(id:str, **params:Unpack['RegistrationRetrieveParams']) -> 'Registration'Returns a Tax Registration object.
method
stripe.tax._settings.Settings.modify(**params:Unpack['SettingsModifyParams']) -> 'Settings'Updates Tax Settings parameters used in tax calculations.
method
stripe.tax._settings.Settings.modify_async(**params:Unpack['SettingsModifyParams']) -> 'Settings'Updates Tax Settings parameters used in tax calculations.
method
stripe.tax._settings.Settings.retrieve(**params:Unpack['SettingsRetrieveParams']) -> 'Settings'Retrieves Tax Settings for a merchant.
method
stripe.tax._settings.Settings.retrieve_async(**params:Unpack['SettingsRetrieveParams']) -> 'Settings'Retrieves Tax Settings for a merchant.
method
stripe.tax._transaction.Transaction.retrieve(id:str, **params:Unpack['TransactionRetrieveParams']) -> 'Transaction'Retrieves a Tax Transaction object.
method
stripe.tax._transaction.Transaction.retrieve_async(id:str, **params:Unpack['TransactionRetrieveParams']) -> 'Transaction'Retrieves a Tax Transaction object.
method
stripe.terminal._configuration.Configuration.create(**params:Unpack['ConfigurationCreateParams']) -> 'Configuration'Creates a new Configuration object.
method
stripe.terminal._configuration.Configuration.create_async(**params:Unpack['ConfigurationCreateParams']) -> 'Configuration'Creates a new Configuration object.
method
stripe.terminal._configuration.Configuration.delete(sid:str, **params:Unpack['ConfigurationDeleteParams']) -> 'Configuration'Deletes a Configuration object.
method
stripe.terminal._configuration.Configuration.delete_async(sid:str, **params:Unpack['ConfigurationDeleteParams']) -> 'Configuration'Deletes a Configuration object.
method
stripe.terminal._configuration.Configuration.list(**params:Unpack['ConfigurationListParams']) -> ListObject['Configuration']Returns a list of Configuration objects.
method
stripe.terminal._configuration.Configuration.list_async(**params:Unpack['ConfigurationListParams']) -> ListObject['Configuration']Returns a list of Configuration objects.
method
stripe.terminal._configuration.Configuration.modify(id:str, **params:Unpack['ConfigurationModifyParams']) -> 'Configuration'Updates a new Configuration object.
method
stripe.terminal._configuration.Configuration.modify_async(id:str, **params:Unpack['ConfigurationModifyParams']) -> 'Configuration'Updates a new Configuration object.
method
stripe.terminal._configuration.Configuration.retrieve(id:str, **params:Unpack['ConfigurationRetrieveParams']) -> 'Configuration'Retrieves a Configuration object.
method
stripe.terminal._configuration.Configuration.retrieve_async(id:str, **params:Unpack['ConfigurationRetrieveParams']) -> 'Configuration'Retrieves a Configuration object.
class
stripe.terminal._location.LocationA Location represents a grouping of readers.
method
stripe.terminal._location.Location.create(**params:Unpack['LocationCreateParams']) -> 'Location'Creates a new Location object.
method
stripe.terminal._location.Location.create_async(**params:Unpack['LocationCreateParams']) -> 'Location'Creates a new Location object.
method
stripe.terminal._location.Location.delete(sid:str, **params:Unpack['LocationDeleteParams']) -> 'Location'Deletes a Location object.
method
stripe.terminal._location.Location.delete_async(sid:str, **params:Unpack['LocationDeleteParams']) -> 'Location'Deletes a Location object.
method
stripe.terminal._location.Location.list(**params:Unpack['LocationListParams']) -> ListObject['Location']Returns a list of Location objects.
method
stripe.terminal._location.Location.list_async(**params:Unpack['LocationListParams']) -> ListObject['Location']Returns a list of Location objects.
method
stripe.terminal._location.Location.retrieve(id:str, **params:Unpack['LocationRetrieveParams']) -> 'Location'Retrieves a Location object.
method
stripe.terminal._location.Location.retrieve_async(id:str, **params:Unpack['LocationRetrieveParams']) -> 'Location'Retrieves a Location object.
method
stripe.terminal._reader.Reader.cancel_action(reader:str, **params:Unpack['ReaderCancelActionParams']) -> 'Reader'Cancels the current reader action.
method
stripe.terminal._reader.Reader.cancel_action_async(reader:str, **params:Unpack['ReaderCancelActionParams']) -> 'Reader'Cancels the current reader action.
method
stripe.terminal._reader.Reader.confirm_payment_intent(reader:str, **params:Unpack['ReaderConfirmPaymentIntentParams']) -> 'Reader'Finalizes a payment on a Reader.
method
stripe.terminal._reader.Reader.confirm_payment_intent_async(reader:str, **params:Unpack['ReaderConfirmPaymentIntentParams']) -> 'Reader'Finalizes a payment on a Reader.
method
stripe.terminal._reader.Reader.create(**params:Unpack['ReaderCreateParams']) -> 'Reader'Creates a new Reader object.
method
stripe.terminal._reader.Reader.create_async(**params:Unpack['ReaderCreateParams']) -> 'Reader'Creates a new Reader object.
method
stripe.terminal._reader.Reader.delete(sid:str, **params:Unpack['ReaderDeleteParams']) -> 'Reader'Deletes a Reader object.
method
stripe.terminal._reader.Reader.delete_async(sid:str, **params:Unpack['ReaderDeleteParams']) -> 'Reader'Deletes a Reader object.
method
stripe.terminal._reader.Reader.list(**params:Unpack['ReaderListParams']) -> ListObject['Reader']Returns a list of Reader objects.
method
stripe.terminal._reader.Reader.list_async(**params:Unpack['ReaderListParams']) -> ListObject['Reader']Returns a list of Reader objects.
method
stripe.terminal._reader.Reader.process_payment_intent(reader:str, **params:Unpack['ReaderProcessPaymentIntentParams']) -> 'Reader'Initiates a payment flow on a Reader.
method
stripe.terminal._reader.Reader.process_payment_intent_async(reader:str, **params:Unpack['ReaderProcessPaymentIntentParams']) -> 'Reader'Initiates a payment flow on a Reader.
method
stripe.terminal._reader.Reader.process_setup_intent(reader:str, **params:Unpack['ReaderProcessSetupIntentParams']) -> 'Reader'Initiates a SetupIntent flow on a Reader.
method
stripe.terminal._reader.Reader.process_setup_intent_async(reader:str, **params:Unpack['ReaderProcessSetupIntentParams']) -> 'Reader'Initiates a SetupIntent flow on a Reader.
method
stripe.terminal._reader.Reader.refund_payment(reader:str, **params:Unpack['ReaderRefundPaymentParams']) -> 'Reader'Initiates an in-person refund on a Reader.
method
stripe.terminal._reader.Reader.refund_payment_async(reader:str, **params:Unpack['ReaderRefundPaymentParams']) -> 'Reader'Initiates an in-person refund on a Reader.
method
stripe.terminal._reader.Reader.retrieve(id:str, **params:Unpack['ReaderRetrieveParams']) -> 'Reader'Retrieves a Reader object.
method
stripe.terminal._reader.Reader.retrieve_async(id:str, **params:Unpack['ReaderRetrieveParams']) -> 'Reader'Retrieves a Reader object.
method
stripe.treasury._transaction.Transaction.list(**params:Unpack['TransactionListParams']) -> ListObject['Transaction']Retrieves a list of Transaction objects.
method
stripe.treasury._transaction.Transaction.list_async(**params:Unpack['TransactionListParams']) -> ListObject['Transaction']Retrieves a list of Transaction objects.
method
stripe.treasury._transaction.Transaction.retrieve(id:str, **params:Unpack['TransactionRetrieveParams']) -> 'Transaction'Retrieves the details of an existing Transaction.
method
stripe.treasury._transaction.Transaction.retrieve_async(id:str, **params:Unpack['TransactionRetrieveParams']) -> 'Transaction'Retrieves the details of an existing Transaction.
class
stripe.v2._list_object.ListObjectRepresents one page of a list of V2 Stripe objects.
この情報について
掲載しているシグネチャは stripe/stripe-python の公開ソースコードを
Python の ast モジュールで静的解析し、引数名・デフォルト値・
型注釈・戻り値型をそのまま抽出したものです。実装コードは保存していません。
詳しくは仕組みの解説をご覧ください。