55 lines
1.4 KiB
Java
55 lines
1.4 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class M {
|
|
|
|
@SerializedName("functionName")
|
|
private final String a;
|
|
|
|
@SerializedName("datasharingFlag")
|
|
private final String c;
|
|
|
|
@SerializedName("datasharingVersion")
|
|
private final String d;
|
|
|
|
public M(String str, String str2, String str3) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
this.c = str;
|
|
this.d = str2;
|
|
this.a = str3;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.d;
|
|
String str3 = this.a;
|
|
StringBuilder sb = new StringBuilder("DataSharingRequest(dataSharingFlag=");
|
|
sb.append(str);
|
|
sb.append(", dataSharingVersion=");
|
|
sb.append(str2);
|
|
sb.append(", functionName=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((this.c.hashCode() * 31) + this.d.hashCode()) * 31) + this.a.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof M)) {
|
|
return false;
|
|
}
|
|
M m = (M) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) m.c) && C14957gcv.b((Object) this.d, (Object) m.d) && C14957gcv.b((Object) this.a, (Object) m.a);
|
|
}
|
|
}
|