mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 13:52:43 +08:00
46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
from datetime import UTC, datetime
|
|
|
|
from sqlalchemy import DECIMAL, Column, DateTime, Enum, String
|
|
from storage.base import Base
|
|
|
|
|
|
class BillingSession(Base): # type: ignore
|
|
"""
|
|
Represents a Stripe billing session for credit purchases.
|
|
Tracks the status of payment transactions and associated user information.
|
|
"""
|
|
|
|
__tablename__ = 'billing_sessions'
|
|
|
|
id = Column(String, primary_key=True)
|
|
user_id = Column(String, nullable=False)
|
|
status = Column(
|
|
Enum(
|
|
'in_progress',
|
|
'completed',
|
|
'cancelled',
|
|
'error',
|
|
name='billing_session_status_enum',
|
|
),
|
|
default='in_progress',
|
|
)
|
|
billing_session_type = Column(
|
|
Enum(
|
|
'DIRECT_PAYMENT',
|
|
'MONTHLY_SUBSCRIPTION',
|
|
name='billing_session_type_enum',
|
|
),
|
|
nullable=False,
|
|
default='DIRECT_PAYMENT',
|
|
)
|
|
price = Column(DECIMAL(19, 4), nullable=False)
|
|
price_code = Column(String, nullable=False)
|
|
created_at = Column(
|
|
DateTime(timezone=True),
|
|
default=lambda: datetime.now(UTC), # type: ignore[attr-defined]
|
|
)
|
|
updated_at = Column(
|
|
DateTime(timezone=True),
|
|
default=lambda: datetime.now(UTC), # type: ignore[attr-defined]
|
|
)
|