discord-jadx/app/src/main/java/com/discord/models/domain/ModelAppliedGuildBoost.java
2021-12-20 08:27:17 +01:00

85 lines
2.4 KiB
Java

package com.discord.models.domain;
import b.d.b.a.a;
/* compiled from: ModelAppliedGuildBoost.kt */
public final class ModelAppliedGuildBoost {
private final long guildId;
/* renamed from: id reason: collision with root package name */
private final long f2673id;
private final long userId;
public ModelAppliedGuildBoost(long j, long j2, long j3) {
this.f2673id = j;
this.guildId = j2;
this.userId = j3;
}
public static /* synthetic */ ModelAppliedGuildBoost copy$default(ModelAppliedGuildBoost modelAppliedGuildBoost, long j, long j2, long j3, int i, Object obj) {
if ((i & 1) != 0) {
j = modelAppliedGuildBoost.f2673id;
}
if ((i & 2) != 0) {
j2 = modelAppliedGuildBoost.guildId;
}
if ((i & 4) != 0) {
j3 = modelAppliedGuildBoost.userId;
}
return modelAppliedGuildBoost.copy(j, j2, j3);
}
public final long component1() {
return this.f2673id;
}
public final long component2() {
return this.guildId;
}
public final long component3() {
return this.userId;
}
public final ModelAppliedGuildBoost copy(long j, long j2, long j3) {
return new ModelAppliedGuildBoost(j, j2, j3);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof ModelAppliedGuildBoost)) {
return false;
}
ModelAppliedGuildBoost modelAppliedGuildBoost = (ModelAppliedGuildBoost) obj;
return this.f2673id == modelAppliedGuildBoost.f2673id && this.guildId == modelAppliedGuildBoost.guildId && this.userId == modelAppliedGuildBoost.userId;
}
public final long getGuildId() {
return this.guildId;
}
public final long getId() {
return this.f2673id;
}
public final long getUserId() {
return this.userId;
}
public int hashCode() {
long j = this.f2673id;
long j2 = this.guildId;
long j3 = this.userId;
return (((((int) (j ^ (j >>> 32))) * 31) + ((int) (j2 ^ (j2 >>> 32)))) * 31) + ((int) (j3 ^ (j3 >>> 32)));
}
public String toString() {
StringBuilder R = a.R("ModelAppliedGuildBoost(id=");
R.append(this.f2673id);
R.append(", guildId=");
R.append(this.guildId);
R.append(", userId=");
return a.B(R, this.userId, ")");
}
}