67 lines
2.1 KiB
Java
67 lines
2.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class wDM {
|
|
|
|
@SerializedName("facetecEncryptKey")
|
|
public final String a;
|
|
|
|
@SerializedName("sessionToken")
|
|
public final String b;
|
|
|
|
@SerializedName("valueEncryptionIv")
|
|
public final String c;
|
|
|
|
@SerializedName("facetecDeviceKey")
|
|
public final String d;
|
|
|
|
@SerializedName("facetecProdKey")
|
|
public final String e;
|
|
|
|
public final String toString() {
|
|
String str = this.b;
|
|
String str2 = this.e;
|
|
String str3 = this.d;
|
|
String str4 = this.a;
|
|
String str5 = this.c;
|
|
StringBuilder sb = new StringBuilder("SessionFaceTecDataEntity(sessionToken=");
|
|
sb.append(str);
|
|
sb.append(", facetecProdKey=");
|
|
sb.append(str2);
|
|
sb.append(", facetecDeviceKey=");
|
|
sb.append(str3);
|
|
sb.append(", facetecEncryptKey=");
|
|
sb.append(str4);
|
|
sb.append(", valueEncryptionIv=");
|
|
sb.append(str5);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.b;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
String str2 = this.e;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.d;
|
|
int hashCode3 = str3 == null ? 0 : str3.hashCode();
|
|
String str4 = this.a;
|
|
int hashCode4 = str4 == null ? 0 : str4.hashCode();
|
|
String str5 = this.c;
|
|
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (str5 != null ? str5.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof wDM)) {
|
|
return false;
|
|
}
|
|
wDM wdm = (wDM) obj;
|
|
return C14957gcv.b((Object) this.b, (Object) wdm.b) && C14957gcv.b((Object) this.e, (Object) wdm.e) && C14957gcv.b((Object) this.d, (Object) wdm.d) && C14957gcv.b((Object) this.a, (Object) wdm.a) && C14957gcv.b((Object) this.c, (Object) wdm.c);
|
|
}
|
|
}
|