chromium/components/autofill/core/browser/data_model/bank_account.h

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_DATA_MODEL_BANK_ACCOUNT_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_DATA_MODEL_BANK_ACCOUNT_H_

#include <cstdint>
#include <string>
#include <string_view>

#include "base/types/strong_alias.h"
#include "components/autofill/core/browser/data_model/payment_instrument.h"

class GURL;

namespace autofill {

// Details for a user's bank account. This data is synced from Google payments.
class BankAccount {};

}  // namespace autofill

#endif  // COMPONENTS_AUTOFILL_CORE_BROWSER_DATA_MODEL_BANK_ACCOUNT_H_