This commit is contained in:
Iliyan Angelov
2025-11-17 18:26:30 +02:00
parent 48353cde9c
commit 0c59fe1173
2535 changed files with 278997 additions and 2480 deletions

View File

@@ -0,0 +1,28 @@
# -*- coding: utf-8 -*-
# File generated from our OpenAPI spec
from stripe._stripe_object import StripeObject
from typing import ClassVar, Optional
from typing_extensions import Literal
class ReserveTransaction(StripeObject):
OBJECT_NAME: ClassVar[Literal["reserve_transaction"]] = (
"reserve_transaction"
)
amount: int
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: Optional[str]
"""
An arbitrary string attached to the object. Often useful for displaying to users.
"""
id: str
"""
Unique identifier for the object.
"""
object: Literal["reserve_transaction"]
"""
String representing the object's type. Objects of the same type share the same value.
"""