47 lines
1.2 KiB
Java
47 lines
1.2 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Tmr {
|
||
|
|
||
|
@SerializedName("customerContactInfo")
|
||
|
public final C0585KHe b;
|
||
|
|
||
|
@SerializedName("applicationUuid")
|
||
|
public final String c;
|
||
|
|
||
|
public Tmr(String str, C0585KHe c0585KHe) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(c0585KHe, "");
|
||
|
this.c = str;
|
||
|
this.b = c0585KHe;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.c;
|
||
|
C0585KHe c0585KHe = this.b;
|
||
|
StringBuilder sb = new StringBuilder("CustomerContactInfoRequest(applicationUuid=");
|
||
|
sb.append(str);
|
||
|
sb.append(", customerContactInfo=");
|
||
|
sb.append(c0585KHe);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (this.c.hashCode() * 31) + this.b.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof Tmr)) {
|
||
|
return false;
|
||
|
}
|
||
|
Tmr tmr = (Tmr) obj;
|
||
|
return C14957gcv.b((Object) this.c, (Object) tmr.c) && C14957gcv.b(this.b, tmr.b);
|
||
|
}
|
||
|
}
|