35 lines
805 B
Java
35 lines
805 B
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class HAZ {
|
||
|
|
||
|
@SerializedName("coborrowerId")
|
||
|
private final String e;
|
||
|
|
||
|
public HAZ(String str) {
|
||
|
C14957gcv.e(str, "");
|
||
|
this.e = str;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.e;
|
||
|
StringBuilder sb = new StringBuilder("EasycashCoBorrowerDeleteRequest(coBorrowerId=");
|
||
|
sb.append(str);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return this.e.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
return (obj instanceof HAZ) && C14957gcv.b((Object) this.e, (Object) ((HAZ) obj).e);
|
||
|
}
|
||
|
}
|