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

72 lines
3.4 KiB
Java

package com.discord.analytics.generated.events.activity_internal;
import c.d.b.a.a;
import com.discord.analytics.generated.traits.TrackActivityInternalMetadata;
import com.discord.analytics.generated.traits.TrackActivityInternalMetadataReceiver;
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: TrackActivityInternalLaunchStepCompleted.kt */
public final class TrackActivityInternalLaunchStepCompleted implements AnalyticsSchema, TrackBaseReceiver, TrackActivityInternalMetadataReceiver {
private final transient String analyticsSchemaTypeName = "activity_internal_launch_step_completed";
private final Long durationMs = null;
private final Long errorCode = null;
private final CharSequence errorMessage = null;
private final CharSequence nextStep = null;
private final CharSequence step = null;
private final Boolean success = null;
private TrackActivityInternalMetadata trackActivityInternalMetadata;
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 TrackActivityInternalLaunchStepCompleted)) {
return false;
}
TrackActivityInternalLaunchStepCompleted trackActivityInternalLaunchStepCompleted = (TrackActivityInternalLaunchStepCompleted) obj;
return m.areEqual(this.step, trackActivityInternalLaunchStepCompleted.step) && m.areEqual(this.nextStep, trackActivityInternalLaunchStepCompleted.nextStep) && m.areEqual(this.durationMs, trackActivityInternalLaunchStepCompleted.durationMs) && m.areEqual(this.success, trackActivityInternalLaunchStepCompleted.success) && m.areEqual(this.errorCode, trackActivityInternalLaunchStepCompleted.errorCode) && m.areEqual(this.errorMessage, trackActivityInternalLaunchStepCompleted.errorMessage);
}
public int hashCode() {
CharSequence charSequence = this.step;
int i = 0;
int hashCode = (charSequence != null ? charSequence.hashCode() : 0) * 31;
CharSequence charSequence2 = this.nextStep;
int hashCode2 = (hashCode + (charSequence2 != null ? charSequence2.hashCode() : 0)) * 31;
Long l = this.durationMs;
int hashCode3 = (hashCode2 + (l != null ? l.hashCode() : 0)) * 31;
Boolean bool = this.success;
int hashCode4 = (hashCode3 + (bool != null ? bool.hashCode() : 0)) * 31;
Long l2 = this.errorCode;
int hashCode5 = (hashCode4 + (l2 != null ? l2.hashCode() : 0)) * 31;
CharSequence charSequence3 = this.errorMessage;
if (charSequence3 != null) {
i = charSequence3.hashCode();
}
return hashCode5 + i;
}
public String toString() {
StringBuilder R = a.R("TrackActivityInternalLaunchStepCompleted(step=");
R.append(this.step);
R.append(", nextStep=");
R.append(this.nextStep);
R.append(", durationMs=");
R.append(this.durationMs);
R.append(", success=");
R.append(this.success);
R.append(", errorCode=");
R.append(this.errorCode);
R.append(", errorMessage=");
return a.D(R, this.errorMessage, ")");
}
}