package t6;

import androidx.annotation.Nullable;

/* JADX INFO: loaded from: classes2.dex */
public final class b extends e {

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    public final Integer f32983a;

    public b(@Nullable Integer num) {
        this.f32983a = num;
    }

    public final boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof e)) {
            return false;
        }
        Integer num = this.f32983a;
        Integer productId = ((e) obj).getProductId();
        return num == null ? productId == null : num.equals(productId);
    }

    @Override // t6.e
    @Nullable
    public Integer getProductId() {
        return this.f32983a;
    }

    public final int hashCode() {
        Integer num = this.f32983a;
        return (num == null ? 0 : num.hashCode()) ^ 1000003;
    }

    public final String toString() {
        return "ProductData{productId=" + this.f32983a + "}";
    }
}
