# Whiteboarding Question: Payment Processing System
You are designing a payment processing system for an online store. The store supports multiple payment methods.
# Requirements:
- The checkout system must be able to process any payment in the same way.
- Each payment method must have a
process(double amount) -> boolean
function that:- Takes an amount as input.
- Returns whether the payment was successful.
- Different payment methods require different data to be created:
- PayPal needs an email and password.
- Credit Card needs a card number, CVV, and billing address.
- Bitcoin needs a wallet address.
- The system should be easily extendable to support future payment methods.
# Task
Design and implement the classes required to make this example work. Your solution should:
- Define a structure that ensures all payment methods can be handled the same way at checkout.
- Ensure all payment methods follow a consistent structure.
- Make it easy to add new payment methods without modifying existing code.
# Example Expected Usage:
|
|
# Expected Console Output:
|
|