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

37 lines
858 B
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public class kyi {
@SerializedName("recipientId")
public long b;
@SerializedName("amount")
public String c;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
kyi kyiVar = (kyi) obj;
if (this.b != kyiVar.b) {
return false;
}
String str = this.c;
String str2 = kyiVar.c;
return str != null ? str.equals(str2) : str2 == null;
}
public int hashCode() {
String str = this.c;
int hashCode = str != null ? str.hashCode() : 0;
long j = this.b;
return (hashCode * 31) + ((int) (j ^ (j >>> 32)));
}
}