Source code for kittycad.models.payment_method_type

from enum import Enum


[docs]class PaymentMethodType(str, Enum): """An enum representing the possible values of an `PaymentMethod`'s `type` field.""" # noqa: E501 """# A card payment method. """ # noqa: E501 CARD = "card" def __str__(self) -> str: return str(self.value)