#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_CREDENTIALMANAGEMENT_OTP_CREDENTIAL_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_CREDENTIALMANAGEMENT_OTP_CREDENTIAL_H_
#include "third_party/blink/renderer/modules/credentialmanagement/credential.h"
#include "third_party/blink/renderer/modules/modules_export.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
namespace blink {
class MODULES_EXPORT OTPCredential final : public Credential {
DEFINE_WRAPPERTYPEINFO();
public:
explicit OTPCredential(const String& code);
bool IsOTPCredential() const override;
const String& code() const { return code_; }
private:
String code_;
};
}
#endif