#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_DATA_MODEL_IBAN_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_DATA_MODEL_IBAN_H_
#include <string>
#include <string_view>
#include "base/time/time.h"
#include "base/types/strong_alias.h"
#include "components/autofill/core/browser/autofill_type.h"
#include "components/autofill/core/browser/data_model/autofill_data_model.h"
#include "third_party/abseil-cpp/absl/types/variant.h"
namespace autofill {
struct PaymentsMetadata;
class Iban : public AutofillDataModel { … };
std::ostream& operator<<(std::ostream& os, const Iban& iban);
}
#endif