discord-jadx/app/src/main/java/c/i/a/b/i/e/g.java

131 lines
3.5 KiB
Java

package c.i.a.b.i.e;
import androidx.annotation.Nullable;
import java.util.List;
/* compiled from: AutoValue_LogRequest */
public final class g extends m {
public final long a;
public final long b;
/* renamed from: c reason: collision with root package name */
public final k f608c;
public final Integer d;
public final String e;
public final List<l> f;
public final p g;
public g(long j, long j2, k kVar, Integer num, String str, List list, p pVar, a aVar) {
this.a = j;
this.b = j2;
this.f608c = kVar;
this.d = num;
this.e = str;
this.f = list;
this.g = pVar;
}
@Override // c.i.a.b.i.e.m
@Nullable
public k a() {
return this.f608c;
}
@Override // c.i.a.b.i.e.m
@Nullable
public List<l> b() {
return this.f;
}
@Override // c.i.a.b.i.e.m
@Nullable
public Integer c() {
return this.d;
}
@Override // c.i.a.b.i.e.m
@Nullable
public String d() {
return this.e;
}
@Override // c.i.a.b.i.e.m
@Nullable
public p e() {
return this.g;
}
public boolean equals(Object obj) {
k kVar;
Integer num;
String str;
List<l> list;
if (obj == this) {
return true;
}
if (!(obj instanceof m)) {
return false;
}
m mVar = (m) obj;
if (this.a == mVar.f() && this.b == mVar.g() && ((kVar = this.f608c) != null ? kVar.equals(mVar.a()) : mVar.a() == null) && ((num = this.d) != null ? num.equals(mVar.c()) : mVar.c() == null) && ((str = this.e) != null ? str.equals(mVar.d()) : mVar.d() == null) && ((list = this.f) != null ? list.equals(mVar.b()) : mVar.b() == null)) {
p pVar = this.g;
if (pVar == null) {
if (mVar.e() == null) {
return true;
}
} else if (pVar.equals(mVar.e())) {
return true;
}
}
return false;
}
@Override // c.i.a.b.i.e.m
public long f() {
return this.a;
}
@Override // c.i.a.b.i.e.m
public long g() {
return this.b;
}
public int hashCode() {
long j = this.a;
long j2 = this.b;
int i = (((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ ((int) ((j2 >>> 32) ^ j2))) * 1000003;
k kVar = this.f608c;
int i2 = 0;
int hashCode = (i ^ (kVar == null ? 0 : kVar.hashCode())) * 1000003;
Integer num = this.d;
int hashCode2 = (hashCode ^ (num == null ? 0 : num.hashCode())) * 1000003;
String str = this.e;
int hashCode3 = (hashCode2 ^ (str == null ? 0 : str.hashCode())) * 1000003;
List<l> list = this.f;
int hashCode4 = (hashCode3 ^ (list == null ? 0 : list.hashCode())) * 1000003;
p pVar = this.g;
if (pVar != null) {
i2 = pVar.hashCode();
}
return hashCode4 ^ i2;
}
public String toString() {
StringBuilder P = c.d.b.a.a.P("LogRequest{requestTimeMs=");
P.append(this.a);
P.append(", requestUptimeMs=");
P.append(this.b);
P.append(", clientInfo=");
P.append(this.f608c);
P.append(", logSource=");
P.append(this.d);
P.append(", logSourceName=");
P.append(this.e);
P.append(", logEvents=");
P.append(this.f);
P.append(", qosTier=");
P.append(this.g);
P.append("}");
return P.toString();
}
}