Source code for plaid2.model.payment_channel

from typing import Any, Dict, List, Optional, Union
from enum import Enum
from pydantic import BaseModel, Field


[docs]class PaymentChannel(str, Enum): online = "online" in_store = "in store" other = "other"