#ifndef COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_CONVERTER_H_
#define COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_CONVERTER_H_
#include "components/autofill/core/browser/data_model/credit_card.h"
#include "third_party/blink/public/mojom/payments/payment_request.mojom.h"
namespace payments {
class PaymentDetails;
class PaymentMethodData;
std::string GetBasicCardNetworkName(const mojom::BasicCardNetwork& network);
PaymentMethodData ConvertPaymentMethodData(
const mojom::PaymentMethodDataPtr& method_data_entry);
PaymentDetails ConvertPaymentDetails(
const mojom::PaymentDetailsPtr& details_entry);
}
#endif