what-the-bank/sources/o/Mtd.java

46 lines
948 B
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class Mtd {
@SerializedName("refId")
public final String c;
private /* synthetic */ Mtd(byte b) {
this("");
}
private Mtd(String str) {
this.c = str;
}
public final String toString() {
String str = this.c;
StringBuilder sb = new StringBuilder("DeactivateEntity(refId=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.c;
if (str == null) {
return 0;
}
return str.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
return (obj instanceof Mtd) && C14957gcv.b((Object) this.c, (Object) ((Mtd) obj).c);
}
public Mtd() {
this((byte) 0);
}
}