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

51 lines
1.2 KiB
Java

package o;
import com.airbnb.deeplinkdispatch.UrlTreeKt;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public class LPp {
@SerializedName("recipientId")
public long d;
@SerializedName("amount")
public String e;
public static LPp d() {
return new LPp();
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
LPp lPp = (LPp) obj;
if (this.d != lPp.d) {
return false;
}
String str = this.e;
String str2 = lPp.e;
return str != null ? str.equals(str2) : str2 == null;
}
public int hashCode() {
String str = this.e;
int hashCode = str != null ? str.hashCode() : 0;
long j = this.d;
return (hashCode * 31) + ((int) (j ^ (j >>> 32)));
}
public String toString() {
StringBuilder sb = new StringBuilder("BulkTransferVerifyRecipientRequest{amount='");
sb.append(this.e);
sb.append("', recipientId=");
sb.append(this.d);
sb.append(UrlTreeKt.componentParamSuffixChar);
return sb.toString();
}
}