discord-jadx/app/src/main/java/com/discord/analytics/generated/events/TrackNuoTransition.java

74 lines
3.1 KiB
Java

package com.discord.analytics.generated.events;
import c.d.b.a.a;
import com.discord.analytics.generated.traits.TrackBase;
import com.discord.analytics.generated.traits.TrackBaseReceiver;
import com.discord.api.science.AnalyticsSchema;
import d0.z.d.m;
/* compiled from: TrackNuoTransition.kt */
public final class TrackNuoTransition implements AnalyticsSchema, TrackBaseReceiver {
private final transient String analyticsSchemaTypeName = "nuo_transition";
private final Boolean back = null;
private final CharSequence flowType = null;
private final CharSequence fromStep = null;
private final Float secondsOnFromStep = null;
private final Boolean skip = null;
private final Boolean skipAttempt = null;
private final CharSequence toStep = null;
private TrackBase trackBase;
@Override // com.discord.api.science.AnalyticsSchema
public String b() {
return this.analyticsSchemaTypeName;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof TrackNuoTransition)) {
return false;
}
TrackNuoTransition trackNuoTransition = (TrackNuoTransition) obj;
return m.areEqual(this.flowType, trackNuoTransition.flowType) && m.areEqual(this.fromStep, trackNuoTransition.fromStep) && m.areEqual(this.toStep, trackNuoTransition.toStep) && m.areEqual(this.skip, trackNuoTransition.skip) && m.areEqual(this.secondsOnFromStep, trackNuoTransition.secondsOnFromStep) && m.areEqual(this.skipAttempt, trackNuoTransition.skipAttempt) && m.areEqual(this.back, trackNuoTransition.back);
}
public int hashCode() {
CharSequence charSequence = this.flowType;
int i = 0;
int hashCode = (charSequence != null ? charSequence.hashCode() : 0) * 31;
CharSequence charSequence2 = this.fromStep;
int hashCode2 = (hashCode + (charSequence2 != null ? charSequence2.hashCode() : 0)) * 31;
CharSequence charSequence3 = this.toStep;
int hashCode3 = (hashCode2 + (charSequence3 != null ? charSequence3.hashCode() : 0)) * 31;
Boolean bool = this.skip;
int hashCode4 = (hashCode3 + (bool != null ? bool.hashCode() : 0)) * 31;
Float f = this.secondsOnFromStep;
int hashCode5 = (hashCode4 + (f != null ? f.hashCode() : 0)) * 31;
Boolean bool2 = this.skipAttempt;
int hashCode6 = (hashCode5 + (bool2 != null ? bool2.hashCode() : 0)) * 31;
Boolean bool3 = this.back;
if (bool3 != null) {
i = bool3.hashCode();
}
return hashCode6 + i;
}
public String toString() {
StringBuilder R = a.R("TrackNuoTransition(flowType=");
R.append(this.flowType);
R.append(", fromStep=");
R.append(this.fromStep);
R.append(", toStep=");
R.append(this.toStep);
R.append(", skip=");
R.append(this.skip);
R.append(", secondsOnFromStep=");
R.append(this.secondsOnFromStep);
R.append(", skipAttempt=");
R.append(this.skipAttempt);
R.append(", back=");
return a.C(R, this.back, ")");
}
}