package o; import com.google.gson.annotations.SerializedName; import java.util.List; /* loaded from: classes3.dex */ public final class AkO { @SerializedName("tilesVersion") private final String c; @SerializedName("deviceIds") private final List e; public AkO(List list, String str) { C14957gcv.e(list, ""); this.e = list; this.c = str; } public final String toString() { List list = this.e; String str = this.c; StringBuilder sb = new StringBuilder("DeviceRequest(deviceIds="); sb.append(list); sb.append(", tilesVersion="); sb.append(str); sb.append(")"); return sb.toString(); } public final int hashCode() { int hashCode = this.e.hashCode(); String str = this.c; return (hashCode * 31) + (str == null ? 0 : str.hashCode()); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof AkO)) { return false; } AkO akO = (AkO) obj; return C14957gcv.b(this.e, akO.e) && C14957gcv.b((Object) this.c, (Object) akO.c); } }