2026-05-20 10:50:30 +00:00

495 lines
18 KiB
Python

# -*- coding: utf-8 -*-
# File generated from our OpenAPI spec
from stripe._expandable_field import ExpandableField
from stripe._list_object import ListObject
from stripe._listable_api_resource import ListableAPIResource
from stripe._request_options import RequestOptions
from stripe._stripe_object import StripeObject
from stripe._test_helpers import APIResourceTestHelpers
from typing import ClassVar, List, Optional, cast
from typing_extensions import (
Literal,
NotRequired,
Type,
TypedDict,
Unpack,
TYPE_CHECKING,
)
if TYPE_CHECKING:
from stripe._payout import Payout
from stripe.treasury._credit_reversal import CreditReversal
from stripe.treasury._outbound_payment import OutboundPayment
from stripe.treasury._outbound_transfer import OutboundTransfer
from stripe.treasury._transaction import Transaction
class ReceivedCredit(ListableAPIResource["ReceivedCredit"]):
"""
ReceivedCredits represent funds sent to a [FinancialAccount](https://stripe.com/docs/api#financial_accounts) (for example, via ACH or wire). These money movements are not initiated from the FinancialAccount.
"""
OBJECT_NAME: ClassVar[Literal["treasury.received_credit"]] = (
"treasury.received_credit"
)
class InitiatingPaymentMethodDetails(StripeObject):
class BillingDetails(StripeObject):
class Address(StripeObject):
city: Optional[str]
"""
City, district, suburb, town, or village.
"""
country: Optional[str]
"""
Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
"""
line1: Optional[str]
"""
Address line 1 (e.g., street, PO Box, or company name).
"""
line2: Optional[str]
"""
Address line 2 (e.g., apartment, suite, unit, or building).
"""
postal_code: Optional[str]
"""
ZIP or postal code.
"""
state: Optional[str]
"""
State, county, province, or region.
"""
address: Address
email: Optional[str]
"""
Email address.
"""
name: Optional[str]
"""
Full name.
"""
_inner_class_types = {"address": Address}
class FinancialAccount(StripeObject):
id: str
"""
The FinancialAccount ID.
"""
network: Literal["stripe"]
"""
The rails the ReceivedCredit was sent over. A FinancialAccount can only send funds over `stripe`.
"""
class UsBankAccount(StripeObject):
bank_name: Optional[str]
"""
Bank name.
"""
last4: Optional[str]
"""
The last four digits of the bank account number.
"""
routing_number: Optional[str]
"""
The routing number for the bank account.
"""
balance: Optional[Literal["payments"]]
"""
Set when `type` is `balance`.
"""
billing_details: BillingDetails
financial_account: Optional[FinancialAccount]
issuing_card: Optional[str]
"""
Set when `type` is `issuing_card`. This is an [Issuing Card](https://stripe.com/docs/api#issuing_cards) ID.
"""
type: Literal[
"balance",
"financial_account",
"issuing_card",
"stripe",
"us_bank_account",
]
"""
Polymorphic type matching the originating money movement's source. This can be an external account, a Stripe balance, or a FinancialAccount.
"""
us_bank_account: Optional[UsBankAccount]
_inner_class_types = {
"billing_details": BillingDetails,
"financial_account": FinancialAccount,
"us_bank_account": UsBankAccount,
}
class LinkedFlows(StripeObject):
class SourceFlowDetails(StripeObject):
credit_reversal: Optional["CreditReversal"]
"""
You can reverse some [ReceivedCredits](https://stripe.com/docs/api#received_credits) depending on their network and source flow. Reversing a ReceivedCredit leads to the creation of a new object known as a CreditReversal.
"""
outbound_payment: Optional["OutboundPayment"]
"""
Use [OutboundPayments](https://docs.stripe.com/docs/treasury/moving-money/financial-accounts/out-of/outbound-payments) to send funds to another party's external bank account or [FinancialAccount](https://stripe.com/docs/api#financial_accounts). To send money to an account belonging to the same user, use an [OutboundTransfer](https://stripe.com/docs/api#outbound_transfers).
Simulate OutboundPayment state changes with the `/v1/test_helpers/treasury/outbound_payments` endpoints. These methods can only be called on test mode objects.
Related guide: [Moving money with Treasury using OutboundPayment objects](https://docs.stripe.com/docs/treasury/moving-money/financial-accounts/out-of/outbound-payments)
"""
outbound_transfer: Optional["OutboundTransfer"]
"""
Use [OutboundTransfers](https://docs.stripe.com/docs/treasury/moving-money/financial-accounts/out-of/outbound-transfers) to transfer funds from a [FinancialAccount](https://stripe.com/docs/api#financial_accounts) to a PaymentMethod belonging to the same entity. To send funds to a different party, use [OutboundPayments](https://stripe.com/docs/api#outbound_payments) instead. You can send funds over ACH rails or through a domestic wire transfer to a user's own external bank account.
Simulate OutboundTransfer state changes with the `/v1/test_helpers/treasury/outbound_transfers` endpoints. These methods can only be called on test mode objects.
Related guide: [Moving money with Treasury using OutboundTransfer objects](https://docs.stripe.com/docs/treasury/moving-money/financial-accounts/out-of/outbound-transfers)
"""
payout: Optional["Payout"]
"""
A `Payout` object is created when you receive funds from Stripe, or when you
initiate a payout to either a bank account or debit card of a [connected
Stripe account](https://docs.stripe.com/docs/connect/bank-debit-card-payouts). You can retrieve individual payouts,
and list all payouts. Payouts are made on [varying
schedules](https://docs.stripe.com/docs/connect/manage-payout-schedule), depending on your country and
industry.
Related guide: [Receiving payouts](https://stripe.com/docs/payouts)
"""
type: Literal[
"credit_reversal",
"other",
"outbound_payment",
"outbound_transfer",
"payout",
]
"""
The type of the source flow that originated the ReceivedCredit.
"""
credit_reversal: Optional[str]
"""
The CreditReversal created as a result of this ReceivedCredit being reversed.
"""
issuing_authorization: Optional[str]
"""
Set if the ReceivedCredit was created due to an [Issuing Authorization](https://stripe.com/docs/api#issuing_authorizations) object.
"""
issuing_transaction: Optional[str]
"""
Set if the ReceivedCredit is also viewable as an [Issuing transaction](https://stripe.com/docs/api#issuing_transactions) object.
"""
source_flow: Optional[str]
"""
ID of the source flow. Set if `network` is `stripe` and the source flow is visible to the user. Examples of source flows include OutboundPayments, payouts, or CreditReversals.
"""
source_flow_details: Optional[SourceFlowDetails]
"""
The expandable object of the source flow.
"""
source_flow_type: Optional[str]
"""
The type of flow that originated the ReceivedCredit (for example, `outbound_payment`).
"""
_inner_class_types = {"source_flow_details": SourceFlowDetails}
class ReversalDetails(StripeObject):
deadline: Optional[int]
"""
Time before which a ReceivedCredit can be reversed.
"""
restricted_reason: Optional[
Literal[
"already_reversed",
"deadline_passed",
"network_restricted",
"other",
"source_flow_restricted",
]
]
"""
Set if a ReceivedCredit cannot be reversed.
"""
class CreateParams(RequestOptions):
amount: int
"""
Amount (in cents) to be transferred.
"""
currency: str
"""
Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
"""
description: NotRequired[str]
"""
An arbitrary string attached to the object. Often useful for displaying to users.
"""
expand: NotRequired[List[str]]
"""
Specifies which fields in the response should be expanded.
"""
financial_account: str
"""
The FinancialAccount to send funds to.
"""
initiating_payment_method_details: NotRequired[
"ReceivedCredit.CreateParamsInitiatingPaymentMethodDetails"
]
"""
Initiating payment method details for the object.
"""
network: Literal["ach", "us_domestic_wire"]
"""
Specifies the network rails to be used. If not set, will default to the PaymentMethod's preferred network. See the [docs](https://stripe.com/docs/treasury/money-movement/timelines) to learn more about money movement timelines for each network type.
"""
class CreateParamsInitiatingPaymentMethodDetails(TypedDict):
type: Literal["us_bank_account"]
"""
The source type.
"""
us_bank_account: NotRequired[
"ReceivedCredit.CreateParamsInitiatingPaymentMethodDetailsUsBankAccount"
]
"""
Optional fields for `us_bank_account`.
"""
class CreateParamsInitiatingPaymentMethodDetailsUsBankAccount(TypedDict):
account_holder_name: NotRequired[str]
"""
The bank account holder's name.
"""
account_number: NotRequired[str]
"""
The bank account number.
"""
routing_number: NotRequired[str]
"""
The bank account's routing number.
"""
class ListParams(RequestOptions):
ending_before: NotRequired[str]
"""
A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
"""
expand: NotRequired[List[str]]
"""
Specifies which fields in the response should be expanded.
"""
financial_account: str
"""
The FinancialAccount that received the funds.
"""
limit: NotRequired[int]
"""
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
"""
linked_flows: NotRequired["ReceivedCredit.ListParamsLinkedFlows"]
"""
Only return ReceivedCredits described by the flow.
"""
starting_after: NotRequired[str]
"""
A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
"""
status: NotRequired[Literal["failed", "succeeded"]]
"""
Only return ReceivedCredits that have the given status: `succeeded` or `failed`.
"""
class ListParamsLinkedFlows(TypedDict):
source_flow_type: Literal[
"credit_reversal",
"other",
"outbound_payment",
"outbound_transfer",
"payout",
]
"""
The source flow type.
"""
class RetrieveParams(RequestOptions):
expand: NotRequired[List[str]]
"""
Specifies which fields in the response should be expanded.
"""
amount: int
"""
Amount (in cents) transferred.
"""
created: int
"""
Time at which the object was created. Measured in seconds since the Unix epoch.
"""
currency: str
"""
Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
"""
description: str
"""
An arbitrary string attached to the object. Often useful for displaying to users.
"""
failure_code: Optional[
Literal[
"account_closed",
"account_frozen",
"international_transaction",
"other",
]
]
"""
Reason for the failure. A ReceivedCredit might fail because the receiving FinancialAccount is closed or frozen.
"""
financial_account: Optional[str]
"""
The FinancialAccount that received the funds.
"""
hosted_regulatory_receipt_url: Optional[str]
"""
A [hosted transaction receipt](https://stripe.com/docs/treasury/moving-money/regulatory-receipts) URL that is provided when money movement is considered regulated under Stripe's money transmission licenses.
"""
id: str
"""
Unique identifier for the object.
"""
initiating_payment_method_details: InitiatingPaymentMethodDetails
linked_flows: LinkedFlows
livemode: bool
"""
Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
"""
network: Literal["ach", "card", "stripe", "us_domestic_wire"]
"""
The rails used to send the funds.
"""
object: Literal["treasury.received_credit"]
"""
String representing the object's type. Objects of the same type share the same value.
"""
reversal_details: Optional[ReversalDetails]
"""
Details describing when a ReceivedCredit may be reversed.
"""
status: Literal["failed", "succeeded"]
"""
Status of the ReceivedCredit. ReceivedCredits are created either `succeeded` (approved) or `failed` (declined). If a ReceivedCredit is declined, the failure reason can be found in the `failure_code` field.
"""
transaction: Optional[ExpandableField["Transaction"]]
"""
The Transaction associated with this object.
"""
@classmethod
def list(
cls, **params: Unpack["ReceivedCredit.ListParams"]
) -> ListObject["ReceivedCredit"]:
"""
Returns a list of ReceivedCredits.
"""
result = cls._static_request(
"get",
cls.class_url(),
params=params,
)
if not isinstance(result, ListObject):
raise TypeError(
"Expected list object from API, got %s"
% (type(result).__name__)
)
return result
@classmethod
async def list_async(
cls, **params: Unpack["ReceivedCredit.ListParams"]
) -> ListObject["ReceivedCredit"]:
"""
Returns a list of ReceivedCredits.
"""
result = await cls._static_request_async(
"get",
cls.class_url(),
params=params,
)
if not isinstance(result, ListObject):
raise TypeError(
"Expected list object from API, got %s"
% (type(result).__name__)
)
return result
@classmethod
def retrieve(
cls, id: str, **params: Unpack["ReceivedCredit.RetrieveParams"]
) -> "ReceivedCredit":
"""
Retrieves the details of an existing ReceivedCredit by passing the unique ReceivedCredit ID from the ReceivedCredit list.
"""
instance = cls(id, **params)
instance.refresh()
return instance
@classmethod
async def retrieve_async(
cls, id: str, **params: Unpack["ReceivedCredit.RetrieveParams"]
) -> "ReceivedCredit":
"""
Retrieves the details of an existing ReceivedCredit by passing the unique ReceivedCredit ID from the ReceivedCredit list.
"""
instance = cls(id, **params)
await instance.refresh_async()
return instance
class TestHelpers(APIResourceTestHelpers["ReceivedCredit"]):
_resource_cls: Type["ReceivedCredit"]
@classmethod
def create(
cls, **params: Unpack["ReceivedCredit.CreateParams"]
) -> "ReceivedCredit":
"""
Use this endpoint to simulate a test mode ReceivedCredit initiated by a third party. In live mode, you can't directly create ReceivedCredits initiated by third parties.
"""
return cast(
"ReceivedCredit",
cls._static_request(
"post",
"/v1/test_helpers/treasury/received_credits",
params=params,
),
)
@classmethod
async def create_async(
cls, **params: Unpack["ReceivedCredit.CreateParams"]
) -> "ReceivedCredit":
"""
Use this endpoint to simulate a test mode ReceivedCredit initiated by a third party. In live mode, you can't directly create ReceivedCredits initiated by third parties.
"""
return cast(
"ReceivedCredit",
await cls._static_request_async(
"post",
"/v1/test_helpers/treasury/received_credits",
params=params,
),
)
@property
def test_helpers(self):
return self.TestHelpers(self)
_inner_class_types = {
"initiating_payment_method_details": InitiatingPaymentMethodDetails,
"linked_flows": LinkedFlows,
"reversal_details": ReversalDetails,
}
ReceivedCredit.TestHelpers._resource_cls = ReceivedCredit