47 lines
1.1 KiB
Java
47 lines
1.1 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class LRC {
|
||
|
|
||
|
@SerializedName("requireTransferLimit")
|
||
|
private final String a;
|
||
|
|
||
|
@SerializedName("accountNo")
|
||
|
private final String e;
|
||
|
|
||
|
public LRC(String str, String str2) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
this.e = str;
|
||
|
this.a = str2;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.e;
|
||
|
String str2 = this.a;
|
||
|
StringBuilder sb = new StringBuilder("CasaDetailsRequest(accountNo=");
|
||
|
sb.append(str);
|
||
|
sb.append(", requireTransferLimit=");
|
||
|
sb.append(str2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (this.e.hashCode() * 31) + this.a.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof LRC)) {
|
||
|
return false;
|
||
|
}
|
||
|
LRC lrc = (LRC) obj;
|
||
|
return C14957gcv.b((Object) this.e, (Object) lrc.e) && C14957gcv.b((Object) this.a, (Object) lrc.a);
|
||
|
}
|
||
|
}
|