package com.google.android.play.core.integrity; /* loaded from: classes2.dex */ final class c extends IntegrityTokenRequest { /* renamed from: a, reason: collision with root package name */ private final String f5198a; /* renamed from: b, reason: collision with root package name */ private final Long f5199b; /* synthetic */ c(String str, Long l10, b bVar) { this.f5198a = str; this.f5199b = l10; } @Override // com.google.android.play.core.integrity.IntegrityTokenRequest public final Long cloudProjectNumber() { return this.f5199b; } public final boolean equals(Object obj) { Long l10; if (obj == this) { return true; } if (obj instanceof IntegrityTokenRequest) { IntegrityTokenRequest integrityTokenRequest = (IntegrityTokenRequest) obj; if (this.f5198a.equals(integrityTokenRequest.nonce()) && ((l10 = this.f5199b) != null ? l10.equals(integrityTokenRequest.cloudProjectNumber()) : integrityTokenRequest.cloudProjectNumber() == null)) { return true; } } return false; } public final int hashCode() { int hashCode = this.f5198a.hashCode() ^ 1000003; Long l10 = this.f5199b; return (hashCode * 1000003) ^ (l10 == null ? 0 : l10.hashCode()); } @Override // com.google.android.play.core.integrity.IntegrityTokenRequest public final String nonce() { return this.f5198a; } public final String toString() { return "IntegrityTokenRequest{nonce=" + this.f5198a + ", cloudProjectNumber=" + this.f5199b + "}"; } }