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

56 lines
1.6 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class UJP {
@SerializedName("addressLine4")
public final String b;
@SerializedName("addressLine3")
public final String c;
@SerializedName("addressLine1")
public final String d;
@SerializedName("addressLine2")
public final String e;
public final String toString() {
String str = this.d;
String str2 = this.e;
String str3 = this.c;
String str4 = this.b;
StringBuilder sb = new StringBuilder("DebitCardRequestMailingAddressEntity(addressLine1=");
sb.append(str);
sb.append(", addressLine2=");
sb.append(str2);
sb.append(", addressLine3=");
sb.append(str3);
sb.append(", addressLine4=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.d.hashCode();
String str = this.e;
int hashCode2 = str == null ? 0 : str.hashCode();
String str2 = this.c;
return (((((hashCode * 31) + hashCode2) * 31) + (str2 != null ? str2.hashCode() : 0)) * 31) + this.b.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof UJP)) {
return false;
}
UJP ujp = (UJP) obj;
return C14957gcv.b((Object) this.d, (Object) ujp.d) && C14957gcv.b((Object) this.e, (Object) ujp.e) && C14957gcv.b((Object) this.c, (Object) ujp.c) && C14957gcv.b((Object) this.b, (Object) ujp.b);
}
}