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

233 lines
8.0 KiB
Python

# -*- coding: utf-8 -*-
# File generated from our OpenAPI spec
from stripe._createable_api_resource import CreateableAPIResource
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 typing import ClassVar, Dict, List, Optional, cast
from typing_extensions import Literal, NotRequired, Unpack, TYPE_CHECKING
if TYPE_CHECKING:
from stripe.treasury._transaction import Transaction
class CreditReversal(
CreateableAPIResource["CreditReversal"],
ListableAPIResource["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.
"""
OBJECT_NAME: ClassVar[Literal["treasury.credit_reversal"]] = (
"treasury.credit_reversal"
)
class StatusTransitions(StripeObject):
posted_at: Optional[int]
"""
Timestamp describing when the CreditReversal changed status to `posted`
"""
class CreateParams(RequestOptions):
expand: NotRequired[List[str]]
"""
Specifies which fields in the response should be expanded.
"""
metadata: NotRequired[Dict[str, str]]
"""
Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
"""
received_credit: str
"""
The ReceivedCredit to reverse.
"""
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
"""
Returns objects associated with this FinancialAccount.
"""
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.
"""
received_credit: NotRequired[str]
"""
Only return CreditReversals for the ReceivedCredit ID.
"""
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["canceled", "posted", "processing"]]
"""
Only return CreditReversals for a given status.
"""
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).
"""
financial_account: str
"""
The FinancialAccount to reverse funds from.
"""
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.
"""
livemode: bool
"""
Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
"""
metadata: Dict[str, str]
"""
Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
"""
network: Literal["ach", "stripe"]
"""
The rails used to reverse the funds.
"""
object: Literal["treasury.credit_reversal"]
"""
String representing the object's type. Objects of the same type share the same value.
"""
received_credit: str
"""
The ReceivedCredit being reversed.
"""
status: Literal["canceled", "posted", "processing"]
"""
Status of the CreditReversal
"""
status_transitions: StatusTransitions
transaction: Optional[ExpandableField["Transaction"]]
"""
The Transaction associated with this object.
"""
@classmethod
def create(
cls, **params: Unpack["CreditReversal.CreateParams"]
) -> "CreditReversal":
"""
Reverses a ReceivedCredit and creates a CreditReversal object.
"""
return cast(
"CreditReversal",
cls._static_request(
"post",
cls.class_url(),
params=params,
),
)
@classmethod
async def create_async(
cls, **params: Unpack["CreditReversal.CreateParams"]
) -> "CreditReversal":
"""
Reverses a ReceivedCredit and creates a CreditReversal object.
"""
return cast(
"CreditReversal",
await cls._static_request_async(
"post",
cls.class_url(),
params=params,
),
)
@classmethod
def list(
cls, **params: Unpack["CreditReversal.ListParams"]
) -> ListObject["CreditReversal"]:
"""
Returns a list of CreditReversals.
"""
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["CreditReversal.ListParams"]
) -> ListObject["CreditReversal"]:
"""
Returns a list of CreditReversals.
"""
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["CreditReversal.RetrieveParams"]
) -> "CreditReversal":
"""
Retrieves the details of an existing CreditReversal by passing the unique CreditReversal ID from either the CreditReversal creation request or CreditReversal list
"""
instance = cls(id, **params)
instance.refresh()
return instance
@classmethod
async def retrieve_async(
cls, id: str, **params: Unpack["CreditReversal.RetrieveParams"]
) -> "CreditReversal":
"""
Retrieves the details of an existing CreditReversal by passing the unique CreditReversal ID from either the CreditReversal creation request or CreditReversal list
"""
instance = cls(id, **params)
await instance.refresh_async()
return instance
_inner_class_types = {"status_transitions": StatusTransitions}