package com.revenuecat.purchases.data;

import com.revenuecat.purchases.CustomerInfo;
import kotlin.jvm.internal.o;
import q.AbstractC2761L;

/* JADX INFO: loaded from: classes3.dex */
public final class LogInResult {
    private final boolean created;
    private final CustomerInfo customerInfo;

    public LogInResult(CustomerInfo customerInfo, boolean z6) {
        o.h(customerInfo, "customerInfo");
        this.customerInfo = customerInfo;
        this.created = z6;
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof LogInResult)) {
            return false;
        }
        LogInResult logInResult = (LogInResult) obj;
        return o.c(this.customerInfo, logInResult.customerInfo) && this.created == logInResult.created;
    }

    public final boolean getCreated() {
        return this.created;
    }

    public final CustomerInfo getCustomerInfo() {
        return this.customerInfo;
    }

    public int hashCode() {
        return Boolean.hashCode(this.created) + (this.customerInfo.hashCode() * 31);
    }

    public String toString() {
        StringBuilder sb = new StringBuilder("LogInResult(customerInfo=");
        sb.append(this.customerInfo);
        sb.append(", created=");
        return AbstractC2761L.h(sb, this.created, ')');
    }
}
