50 lines
1.1 KiB
Java
50 lines
1.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class TE {
|
|
|
|
@SerializedName("channelCode")
|
|
String a;
|
|
|
|
@SerializedName("functionCode")
|
|
String b;
|
|
|
|
public TE(String str, String str2) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
this.a = str;
|
|
this.b = str2;
|
|
}
|
|
|
|
public /* synthetic */ TE() {
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.b;
|
|
StringBuilder sb = new StringBuilder("PartnerWebViewConsent(channelCode=");
|
|
sb.append(str);
|
|
sb.append(", functionCode=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (this.a.hashCode() * 31) + this.b.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof TE)) {
|
|
return false;
|
|
}
|
|
TE te = (TE) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) te.a) && C14957gcv.b((Object) this.b, (Object) te.b);
|
|
}
|
|
}
|