Files
ComputerTech312 3ddbc40bb5 Improve subscription UI with large tier buttons
- Replace dropdown tier selection with attractive visual buttons
- Add tier-button CSS with hover effects and selection states
- Remove 'or pay by card' divider from subscription form for cleaner UI
- Update JavaScript to handle tier button selection events
- Fix Stripe module import conflict by renaming stripe directory to stripe_config
- Add responsive grid layout for tier buttons on mobile devices
2025-10-07 17:22:51 +01:00

26 lines
657 B
Python

# -*- 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 Application(StripeObject):
OBJECT_NAME: ClassVar[Literal["application"]] = "application"
id: str
"""
Unique identifier for the object.
"""
name: Optional[str]
"""
The name of the application.
"""
object: Literal["application"]
"""
String representing the object's type. Objects of the same type share the same value.
"""
deleted: Optional[Literal[True]]
"""
Always true for a deleted object
"""