43 lines
1.1 KiB
Java
43 lines
1.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class FQA {
|
|
|
|
@SerializedName("expireDateTime")
|
|
public final String a;
|
|
|
|
@SerializedName("remark")
|
|
public final OqA c;
|
|
|
|
public final String toString() {
|
|
OqA oqA = this.c;
|
|
String str = this.a;
|
|
StringBuilder sb = new StringBuilder("NdidCommonConfirmationEntity(remark=");
|
|
sb.append(oqA);
|
|
sb.append(", expireDateTime=");
|
|
sb.append(str);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
OqA oqA = this.c;
|
|
int hashCode = oqA == null ? 0 : oqA.hashCode();
|
|
String str = this.a;
|
|
return (hashCode * 31) + (str != null ? str.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof FQA)) {
|
|
return false;
|
|
}
|
|
FQA fqa = (FQA) obj;
|
|
return C14957gcv.b(this.c, fqa.c) && C14957gcv.b((Object) this.a, (Object) fqa.a);
|
|
}
|
|
}
|