#include "components/autofill/core/browser/webdata/payments/payments_sync_bridge_test_util.h"
#include "base/strings/string_number_conversions.h"
namespace autofill {
CreditCard CreateServerCreditCard(const std::string& server_id) { … }
Iban CreateServerIban(Iban::InstrumentId instrument_id) { … }
sync_pb::AutofillWalletSpecifics CreateAutofillWalletSpecificsForCard(
const std::string& client_tag,
const std::string& billing_address_id,
const std::string& nickname) { … }
sync_pb::AutofillWalletSpecifics
CreateAutofillWalletSpecificsForPaymentsCustomerData(
const std::string& client_tag) { … }
sync_pb::AutofillWalletSpecifics
CreateAutofillWalletSpecificsForCreditCardCloudTokenData(
const std::string& client_tag) { … }
sync_pb::AutofillWalletSpecifics CreateAutofillWalletSpecificsForIban(
const std::string& client_tag) { … }
sync_pb::AutofillWalletSpecifics CreateAutofillWalletSpecificsForBankAccount(
const std::string_view client_tag,
std::string nickname,
const GURL& display_icon_url,
std::string bank_name,
std::string account_number_suffix,
sync_pb::BankAccountDetails::AccountType account_type) { … }
sync_pb::AutofillWalletSpecifics CreateAutofillWalletSpecificsForEwalletAccount(
const std::string_view client_tag,
std::string nickname,
const GURL& display_icon_url,
std::string ewallet_name,
std::string account_display_name,
bool is_fido_enrolled) { … }
}