47 lines
1.2 KiB
Java
47 lines
1.2 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class ICj {
|
|
|
|
@SerializedName("cardMask")
|
|
public final String b;
|
|
|
|
@SerializedName("transactionToken")
|
|
public final String c;
|
|
|
|
@SerializedName("allowTag")
|
|
public final List<String> e;
|
|
|
|
public final String toString() {
|
|
String str = this.b;
|
|
String str2 = this.c;
|
|
List<String> list = this.e;
|
|
StringBuilder sb = new StringBuilder("PrepaidActivationVerificationEntity(cardMask=");
|
|
sb.append(str);
|
|
sb.append(", transactionToken=");
|
|
sb.append(str2);
|
|
sb.append(", allowTag=");
|
|
sb.append(list);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((this.b.hashCode() * 31) + this.c.hashCode()) * 31) + this.e.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof ICj)) {
|
|
return false;
|
|
}
|
|
ICj iCj = (ICj) obj;
|
|
return C14957gcv.b((Object) this.b, (Object) iCj.b) && C14957gcv.b((Object) this.c, (Object) iCj.c) && C14957gcv.b(this.e, iCj.e);
|
|
}
|
|
}
|