blob: b947dabd24870efc31d7a3d20a94765f2cc5e084 [file] [log] [blame]
#pragma once
#include <android/binder_interface_utils.h>
#include <cstdint>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#ifdef BINDER_STABILITY_SUPPORT
#include <android/binder_stability.h>
#endif // BINDER_STABILITY_SUPPORT
namespace aidl {
namespace android {
namespace hardware {
namespace identity {
class HardwareInformation {
public:
static const char* descriptor;
std::string credentialStoreName;
std::string credentialStoreAuthorName;
int32_t dataChunkSize;
bool isDirectAccess;
std::vector<std::string> supportedDocTypes;
binder_status_t readFromParcel(const AParcel* parcel);
binder_status_t writeToParcel(AParcel* parcel) const;
};
} // namespace identity
} // namespace hardware
} // namespace android
} // namespace aidl