58 lines
1.6 KiB
Java
58 lines
1.6 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* renamed from: o.bn, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public final class C5121bn {
|
|
|
|
@SerializedName("accountNo")
|
|
private final String b;
|
|
|
|
@SerializedName("applicationId")
|
|
private final String c;
|
|
|
|
@SerializedName("cardRef")
|
|
private final String d;
|
|
|
|
public C5121bn(String str, String str2, String str3) {
|
|
C14957gcv.e(str, "");
|
|
this.c = str;
|
|
this.b = str2;
|
|
this.d = str3;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.b;
|
|
String str3 = this.d;
|
|
StringBuilder sb = new StringBuilder("MailingAddressProductAddressRequest(applicationId=");
|
|
sb.append(str);
|
|
sb.append(", accountNo=");
|
|
sb.append(str2);
|
|
sb.append(", cardRef=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.c.hashCode();
|
|
String str = this.b;
|
|
int hashCode2 = str == null ? 0 : str.hashCode();
|
|
String str2 = this.d;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (str2 != null ? str2.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof C5121bn)) {
|
|
return false;
|
|
}
|
|
C5121bn c5121bn = (C5121bn) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) c5121bn.c) && C14957gcv.b((Object) this.b, (Object) c5121bn.b) && C14957gcv.b((Object) this.d, (Object) c5121bn.d);
|
|
}
|
|
}
|