""" Square payment connector for AITBC Enterprise (Placeholder) """ from .base import PaymentConnector, PaymentMethod, Charge, Refund, Subscription class SquareConnector(PaymentConnector): """Square payment processor connector""" def __init__(self, client, config, square_access_token): # TODO: Implement Square connector raise NotImplementedError("Square connector not yet implemented") async def create_charge(self, amount, currency, source, description=None, metadata=None): # TODO: Implement Square charge creation raise NotImplementedError async def create_refund(self, charge_id, amount=None, reason=None): # TODO: Implement Square refund raise NotImplementedError async def create_payment_method(self, type, card, metadata=None): # TODO: Implement Square payment method raise NotImplementedError async def create_subscription(self, customer, items, metadata=None): # TODO: Implement Square subscription raise NotImplementedError async def cancel_subscription(self, subscription_id, at_period_end=True): # TODO: Implement Square subscription cancellation raise NotImplementedError