package co.discord.media_engine; import a0.a.a.b; import b.d.b.a.a; import com.discord.models.domain.ModelAuditLogEntry; import d0.z.d.m; /* compiled from: Statistics.kt */ /* loaded from: classes.dex */ public final class ReceiverReport { private final long bitrate; private final int fractionLost; /* renamed from: id reason: collision with root package name */ private final String f1992id; public ReceiverReport(String str, long j, int i) { m.checkNotNullParameter(str, ModelAuditLogEntry.CHANGE_KEY_ID); this.f1992id = str; this.bitrate = j; this.fractionLost = i; } public static /* synthetic */ ReceiverReport copy$default(ReceiverReport receiverReport, String str, long j, int i, int i2, Object obj) { if ((i2 & 1) != 0) { str = receiverReport.f1992id; } if ((i2 & 2) != 0) { j = receiverReport.bitrate; } if ((i2 & 4) != 0) { i = receiverReport.fractionLost; } return receiverReport.copy(str, j, i); } public final String component1() { return this.f1992id; } public final long component2() { return this.bitrate; } public final int component3() { return this.fractionLost; } public final ReceiverReport copy(String str, long j, int i) { m.checkNotNullParameter(str, ModelAuditLogEntry.CHANGE_KEY_ID); return new ReceiverReport(str, j, i); } public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof ReceiverReport)) { return false; } ReceiverReport receiverReport = (ReceiverReport) obj; return m.areEqual(this.f1992id, receiverReport.f1992id) && this.bitrate == receiverReport.bitrate && this.fractionLost == receiverReport.fractionLost; } public final long getBitrate() { return this.bitrate; } public final int getFractionLost() { return this.fractionLost; } public final String getId() { return this.f1992id; } public int hashCode() { String str = this.f1992id; return ((b.a(this.bitrate) + ((str != null ? str.hashCode() : 0) * 31)) * 31) + this.fractionLost; } public String toString() { StringBuilder R = a.R("ReceiverReport(id="); R.append(this.f1992id); R.append(", bitrate="); R.append(this.bitrate); R.append(", fractionLost="); return a.A(R, this.fractionLost, ")"); } }