42 lines
935 B
Java
42 lines
935 B
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class YYM {
|
||
|
|
||
|
@SerializedName("recipientId")
|
||
|
public long b;
|
||
|
|
||
|
@SerializedName("amount")
|
||
|
public String c;
|
||
|
|
||
|
public YYM(String str, long j) {
|
||
|
this.c = str;
|
||
|
this.b = j;
|
||
|
}
|
||
|
|
||
|
public boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (obj == null || getClass() != obj.getClass()) {
|
||
|
return false;
|
||
|
}
|
||
|
YYM yym = (YYM) obj;
|
||
|
if (this.b != yym.b) {
|
||
|
return false;
|
||
|
}
|
||
|
String str = this.c;
|
||
|
String str2 = yym.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)));
|
||
|
}
|
||
|
}
|