TransferMethod
The deliver method of funds between a sender and receiver
Definition
public enum TransferMethod {
case bankAccount
case cashPickup
case mobileWallet
case pushToCard
}Cases
| Case | Description |
|---|---|
| bankAccount | Bank account |
| cashPickup | Cash pickup |
| mobileWallet | Mobile wallet |
| pushToCard | Push to card |
Sample Usage
private let transferMethod: TransferMethod = .mobileWalletUpdated 5 months ago
