from typing import Any, Dict from coinbase.constants import API_PREFIX def list_payment_methods(self, **kwargs) -> Dict[str, Any]: """ **List Payment Methods** _________________ [GET] https://api.coinbase.com/api/v3/brokerage/payment_methods __________ **Description:** Get a list of payment methods for the current user. __________ **Read more on the official documentation:** `List Payment Methods `_ """ endpoint = f"{API_PREFIX}/payment_methods" return self.get(endpoint, **kwargs) def get_payment_method(self, payment_method_id: str, **kwargs) -> Dict[str, Any]: """ **Get Payment Method** _________________ [GET] https://api.coinbase.com/api/v3/brokerage/payment_methods/{payment_method_id} __________ **Description:** Get information about a payment method for the current user. __________ **Read more on the official documentation:** `Get Payment Method `_ """ endpoint = f"{API_PREFIX}/payment_methods/{payment_method_id}" return self.get(endpoint, **kwargs)