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

49 lines
1.3 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class RWr {
@SerializedName("collectConsentUrlEN")
public final String a;
@SerializedName("collectConsentUrlTH")
public final String b;
@SerializedName("cachePeriod")
public final Integer c;
public final String toString() {
String str = this.b;
String str2 = this.a;
Integer num = this.c;
StringBuilder sb = new StringBuilder("AppConfigGeneralConsentEntity(collectConsentUrlTH=");
sb.append(str);
sb.append(", collectConsentUrlEN=");
sb.append(str2);
sb.append(", cachePeriod=");
sb.append(num);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.b.hashCode();
int hashCode2 = this.a.hashCode();
Integer num = this.c;
return (((hashCode * 31) + hashCode2) * 31) + (num == null ? 0 : num.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof RWr)) {
return false;
}
RWr rWr = (RWr) obj;
return C14957gcv.b((Object) this.b, (Object) rWr.b) && C14957gcv.b((Object) this.a, (Object) rWr.a) && C14957gcv.b(this.c, rWr.c);
}
}