mirror of
https://github.com/creyD/creyPY.git
synced 2026-04-13 11:50:31 +02:00
24 lines
396 B
Python
24 lines
396 B
Python
class ItemReturn:
|
|
quantity = 1
|
|
|
|
|
|
class SubscriptionItem:
|
|
def retrieve(self, id: str = ""):
|
|
return ItemReturn
|
|
|
|
def modify(self, id: str, quantity: int):
|
|
return ItemReturn
|
|
|
|
|
|
class StripeAPI:
|
|
def __init__(self, key: str):
|
|
pass
|
|
|
|
@property
|
|
def SubscriptionItem(self):
|
|
return SubscriptionItem
|
|
|
|
|
|
def get_stripe_api():
|
|
return StripeAPI("test")
|