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

100 lines
4.8 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;
import java.util.List;
/* compiled from: TrackStoreListingUpdated.kt */
public final class TrackStoreListingUpdated implements AnalyticsSchema, TrackBaseReceiver {
private final transient String analyticsSchemaTypeName = "store_listing_updated";
private final List<CharSequence> carouselItems = null;
private final List<Long> childSkuIds = null;
private final CharSequence flavorText = null;
private final Long guildId = null;
private final Boolean isPublished = null;
private final Long previewVideoAssetId = null;
private final Long skuId = null;
private final Long storeListingId = null;
private final CharSequence tagline = null;
private final Long thumbnailAssetId = null;
private TrackBase trackBase;
private final CharSequence updateFrom = null;
private final CharSequence updateType = 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 TrackStoreListingUpdated)) {
return false;
}
TrackStoreListingUpdated trackStoreListingUpdated = (TrackStoreListingUpdated) obj;
return m.areEqual(this.storeListingId, trackStoreListingUpdated.storeListingId) && m.areEqual(this.skuId, trackStoreListingUpdated.skuId) && m.areEqual(this.updateFrom, trackStoreListingUpdated.updateFrom) && m.areEqual(this.updateType, trackStoreListingUpdated.updateType) && m.areEqual(this.guildId, trackStoreListingUpdated.guildId) && m.areEqual(this.childSkuIds, trackStoreListingUpdated.childSkuIds) && m.areEqual(this.isPublished, trackStoreListingUpdated.isPublished) && m.areEqual(this.tagline, trackStoreListingUpdated.tagline) && m.areEqual(this.flavorText, trackStoreListingUpdated.flavorText) && m.areEqual(this.thumbnailAssetId, trackStoreListingUpdated.thumbnailAssetId) && m.areEqual(this.previewVideoAssetId, trackStoreListingUpdated.previewVideoAssetId) && m.areEqual(this.carouselItems, trackStoreListingUpdated.carouselItems);
}
public int hashCode() {
Long l = this.storeListingId;
int i = 0;
int hashCode = (l != null ? l.hashCode() : 0) * 31;
Long l2 = this.skuId;
int hashCode2 = (hashCode + (l2 != null ? l2.hashCode() : 0)) * 31;
CharSequence charSequence = this.updateFrom;
int hashCode3 = (hashCode2 + (charSequence != null ? charSequence.hashCode() : 0)) * 31;
CharSequence charSequence2 = this.updateType;
int hashCode4 = (hashCode3 + (charSequence2 != null ? charSequence2.hashCode() : 0)) * 31;
Long l3 = this.guildId;
int hashCode5 = (hashCode4 + (l3 != null ? l3.hashCode() : 0)) * 31;
List<Long> list = this.childSkuIds;
int hashCode6 = (hashCode5 + (list != null ? list.hashCode() : 0)) * 31;
Boolean bool = this.isPublished;
int hashCode7 = (hashCode6 + (bool != null ? bool.hashCode() : 0)) * 31;
CharSequence charSequence3 = this.tagline;
int hashCode8 = (hashCode7 + (charSequence3 != null ? charSequence3.hashCode() : 0)) * 31;
CharSequence charSequence4 = this.flavorText;
int hashCode9 = (hashCode8 + (charSequence4 != null ? charSequence4.hashCode() : 0)) * 31;
Long l4 = this.thumbnailAssetId;
int hashCode10 = (hashCode9 + (l4 != null ? l4.hashCode() : 0)) * 31;
Long l5 = this.previewVideoAssetId;
int hashCode11 = (hashCode10 + (l5 != null ? l5.hashCode() : 0)) * 31;
List<CharSequence> list2 = this.carouselItems;
if (list2 != null) {
i = list2.hashCode();
}
return hashCode11 + i;
}
public String toString() {
StringBuilder R = a.R("TrackStoreListingUpdated(storeListingId=");
R.append(this.storeListingId);
R.append(", skuId=");
R.append(this.skuId);
R.append(", updateFrom=");
R.append(this.updateFrom);
R.append(", updateType=");
R.append(this.updateType);
R.append(", guildId=");
R.append(this.guildId);
R.append(", childSkuIds=");
R.append(this.childSkuIds);
R.append(", isPublished=");
R.append(this.isPublished);
R.append(", tagline=");
R.append(this.tagline);
R.append(", flavorText=");
R.append(this.flavorText);
R.append(", thumbnailAssetId=");
R.append(this.thumbnailAssetId);
R.append(", previewVideoAssetId=");
R.append(this.previewVideoAssetId);
R.append(", carouselItems=");
return a.J(R, this.carouselItems, ")");
}
}