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

94 lines
5.0 KiB
Java

package com.discord.analytics.generated.events;
import b.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: TrackFriendSuggestionSkipped.kt */
public final class TrackFriendSuggestionSkipped implements AnalyticsSchema, TrackBaseReceiver {
private final transient String analyticsSchemaTypeName = "friend_suggestion_skipped";
private final Long existingRelationshipType = null;
private final Boolean isNonMutual = null;
private final Boolean isReverseSuggestion = null;
private final Long otherUserAllowedInSuggestions = null;
private final Boolean otherUserConsents = null;
private final Boolean otherUserDiscoverable = null;
private final CharSequence platformType = null;
private final Long suggestedUserId = null;
private TrackBase trackBase;
private final Long userAllowedInSuggestions = null;
private final Boolean userConsents = null;
private final Boolean userIsDiscoverable = null;
@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 TrackFriendSuggestionSkipped)) {
return false;
}
TrackFriendSuggestionSkipped trackFriendSuggestionSkipped = (TrackFriendSuggestionSkipped) obj;
return m.areEqual(this.suggestedUserId, trackFriendSuggestionSkipped.suggestedUserId) && m.areEqual(this.platformType, trackFriendSuggestionSkipped.platformType) && m.areEqual(this.isNonMutual, trackFriendSuggestionSkipped.isNonMutual) && m.areEqual(this.isReverseSuggestion, trackFriendSuggestionSkipped.isReverseSuggestion) && m.areEqual(this.existingRelationshipType, trackFriendSuggestionSkipped.existingRelationshipType) && m.areEqual(this.userAllowedInSuggestions, trackFriendSuggestionSkipped.userAllowedInSuggestions) && m.areEqual(this.userConsents, trackFriendSuggestionSkipped.userConsents) && m.areEqual(this.userIsDiscoverable, trackFriendSuggestionSkipped.userIsDiscoverable) && m.areEqual(this.otherUserAllowedInSuggestions, trackFriendSuggestionSkipped.otherUserAllowedInSuggestions) && m.areEqual(this.otherUserConsents, trackFriendSuggestionSkipped.otherUserConsents) && m.areEqual(this.otherUserDiscoverable, trackFriendSuggestionSkipped.otherUserDiscoverable);
}
public int hashCode() {
Long l = this.suggestedUserId;
int i = 0;
int hashCode = (l != null ? l.hashCode() : 0) * 31;
CharSequence charSequence = this.platformType;
int hashCode2 = (hashCode + (charSequence != null ? charSequence.hashCode() : 0)) * 31;
Boolean bool = this.isNonMutual;
int hashCode3 = (hashCode2 + (bool != null ? bool.hashCode() : 0)) * 31;
Boolean bool2 = this.isReverseSuggestion;
int hashCode4 = (hashCode3 + (bool2 != null ? bool2.hashCode() : 0)) * 31;
Long l2 = this.existingRelationshipType;
int hashCode5 = (hashCode4 + (l2 != null ? l2.hashCode() : 0)) * 31;
Long l3 = this.userAllowedInSuggestions;
int hashCode6 = (hashCode5 + (l3 != null ? l3.hashCode() : 0)) * 31;
Boolean bool3 = this.userConsents;
int hashCode7 = (hashCode6 + (bool3 != null ? bool3.hashCode() : 0)) * 31;
Boolean bool4 = this.userIsDiscoverable;
int hashCode8 = (hashCode7 + (bool4 != null ? bool4.hashCode() : 0)) * 31;
Long l4 = this.otherUserAllowedInSuggestions;
int hashCode9 = (hashCode8 + (l4 != null ? l4.hashCode() : 0)) * 31;
Boolean bool5 = this.otherUserConsents;
int hashCode10 = (hashCode9 + (bool5 != null ? bool5.hashCode() : 0)) * 31;
Boolean bool6 = this.otherUserDiscoverable;
if (bool6 != null) {
i = bool6.hashCode();
}
return hashCode10 + i;
}
public String toString() {
StringBuilder R = a.R("TrackFriendSuggestionSkipped(suggestedUserId=");
R.append(this.suggestedUserId);
R.append(", platformType=");
R.append(this.platformType);
R.append(", isNonMutual=");
R.append(this.isNonMutual);
R.append(", isReverseSuggestion=");
R.append(this.isReverseSuggestion);
R.append(", existingRelationshipType=");
R.append(this.existingRelationshipType);
R.append(", userAllowedInSuggestions=");
R.append(this.userAllowedInSuggestions);
R.append(", userConsents=");
R.append(this.userConsents);
R.append(", userIsDiscoverable=");
R.append(this.userIsDiscoverable);
R.append(", otherUserAllowedInSuggestions=");
R.append(this.otherUserAllowedInSuggestions);
R.append(", otherUserConsents=");
R.append(this.otherUserConsents);
R.append(", otherUserDiscoverable=");
return a.C(R, this.otherUserDiscoverable, ")");
}
}