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

76 lines
2.3 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class FFL {
@SerializedName("channelType")
public final String a;
@SerializedName("decimalAmountFlag")
public final String b;
@SerializedName("currencyCode")
public final String c;
@SerializedName("countryName")
public final String d;
@SerializedName("agentType")
public final String e;
@SerializedName("logoImageURL")
public final String f;
@SerializedName("name")
public final String i;
@SerializedName("sortSequence")
public final String j;
public final String toString() {
String str = this.d;
String str2 = this.a;
String str3 = this.e;
String str4 = this.c;
String str5 = this.b;
String str6 = this.j;
String str7 = this.f;
String str8 = this.i;
StringBuilder sb = new StringBuilder("ChannelEntity(countryName=");
sb.append(str);
sb.append(", channelType=");
sb.append(str2);
sb.append(", agentType=");
sb.append(str3);
sb.append(", currencyCode=");
sb.append(str4);
sb.append(", decimalAmountFlag=");
sb.append(str5);
sb.append(", sortSequence=");
sb.append(str6);
sb.append(", logoImageURL=");
sb.append(str7);
sb.append(", name=");
sb.append(str8);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((((((((((this.d.hashCode() * 31) + this.a.hashCode()) * 31) + this.e.hashCode()) * 31) + this.c.hashCode()) * 31) + this.b.hashCode()) * 31) + this.j.hashCode()) * 31) + this.f.hashCode()) * 31) + this.i.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof FFL)) {
return false;
}
FFL ffl = (FFL) obj;
return C14957gcv.b((Object) this.d, (Object) ffl.d) && C14957gcv.b((Object) this.a, (Object) ffl.a) && C14957gcv.b((Object) this.e, (Object) ffl.e) && C14957gcv.b((Object) this.c, (Object) ffl.c) && C14957gcv.b((Object) this.b, (Object) ffl.b) && C14957gcv.b((Object) this.j, (Object) ffl.j) && C14957gcv.b((Object) this.f, (Object) ffl.f) && C14957gcv.b((Object) this.i, (Object) ffl.i);
}
}