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

73 lines
3.1 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.analytics.generated.traits.TrackGuildLfgGroup;
import com.discord.analytics.generated.traits.TrackGuildLfgGroupReceiver;
import com.discord.api.science.AnalyticsSchema;
import d0.z.d.m;
import java.util.List;
/* compiled from: TrackRemoveChannelRecipient.kt */
public final class TrackRemoveChannelRecipient implements AnalyticsSchema, TrackBaseReceiver, TrackGuildLfgGroupReceiver {
private final transient String analyticsSchemaTypeName = "remove_channel_recipient";
private final Long channelId = null;
private final Long channelType = null;
private final Boolean owner = null;
private final Long recipientId = null;
private final List<Long> recipientIds = null;
private final CharSequence removeType = null;
private TrackBase trackBase;
private TrackGuildLfgGroup trackGuildLfgGroup;
@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 TrackRemoveChannelRecipient)) {
return false;
}
TrackRemoveChannelRecipient trackRemoveChannelRecipient = (TrackRemoveChannelRecipient) obj;
return m.areEqual(this.channelId, trackRemoveChannelRecipient.channelId) && m.areEqual(this.channelType, trackRemoveChannelRecipient.channelType) && m.areEqual(this.owner, trackRemoveChannelRecipient.owner) && m.areEqual(this.recipientId, trackRemoveChannelRecipient.recipientId) && m.areEqual(this.recipientIds, trackRemoveChannelRecipient.recipientIds) && m.areEqual(this.removeType, trackRemoveChannelRecipient.removeType);
}
public int hashCode() {
Long l = this.channelId;
int i = 0;
int hashCode = (l != null ? l.hashCode() : 0) * 31;
Long l2 = this.channelType;
int hashCode2 = (hashCode + (l2 != null ? l2.hashCode() : 0)) * 31;
Boolean bool = this.owner;
int hashCode3 = (hashCode2 + (bool != null ? bool.hashCode() : 0)) * 31;
Long l3 = this.recipientId;
int hashCode4 = (hashCode3 + (l3 != null ? l3.hashCode() : 0)) * 31;
List<Long> list = this.recipientIds;
int hashCode5 = (hashCode4 + (list != null ? list.hashCode() : 0)) * 31;
CharSequence charSequence = this.removeType;
if (charSequence != null) {
i = charSequence.hashCode();
}
return hashCode5 + i;
}
public String toString() {
StringBuilder R = a.R("TrackRemoveChannelRecipient(channelId=");
R.append(this.channelId);
R.append(", channelType=");
R.append(this.channelType);
R.append(", owner=");
R.append(this.owner);
R.append(", recipientId=");
R.append(this.recipientId);
R.append(", recipientIds=");
R.append(this.recipientIds);
R.append(", removeType=");
return a.D(R, this.removeType, ")");
}
}