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

84 lines
2.4 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class GIv {
@SerializedName("availableDurations")
public final List<String> a;
@SerializedName("maximumCreditLimit")
public final String b;
@SerializedName("minimumCreditLimit")
public final String c;
@SerializedName("sliderInterval")
public final String d;
@SerializedName("defaultCreditLimit")
public final String e;
private GIv(byte b) {
this.c = null;
this.b = null;
this.e = null;
this.d = null;
this.a = null;
}
private /* synthetic */ GIv(char c) {
this((byte) 0);
}
public final String toString() {
String str = this.c;
String str2 = this.b;
String str3 = this.e;
String str4 = this.d;
List<String> list = this.a;
StringBuilder sb = new StringBuilder("EasycashMCMCOffersEntity(minimumCreditLimit=");
sb.append(str);
sb.append(", maximumCreditLimit=");
sb.append(str2);
sb.append(", defaultCreditLimit=");
sb.append(str3);
sb.append(", sliderInterval=");
sb.append(str4);
sb.append(", durationOptions=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.c;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.b;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.e;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
String str4 = this.d;
int hashCode4 = str4 == null ? 0 : str4.hashCode();
List<String> list = this.a;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (list != null ? list.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof GIv)) {
return false;
}
GIv gIv = (GIv) obj;
return C14957gcv.b((Object) this.c, (Object) gIv.c) && C14957gcv.b((Object) this.b, (Object) gIv.b) && C14957gcv.b((Object) this.e, (Object) gIv.e) && C14957gcv.b((Object) this.d, (Object) gIv.d) && C14957gcv.b(this.a, gIv.a);
}
public GIv() {
this((char) 0);
}
}