49 lines
1.3 KiB
Java
49 lines
1.3 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* renamed from: o.cN, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public final class C6243cN {
|
|
|
|
@SerializedName("pointXCustomerID")
|
|
private final String b;
|
|
|
|
@SerializedName("refIds")
|
|
private final List<C6509cV> c;
|
|
|
|
public C6243cN(String str, List<C6509cV> list) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(list, "");
|
|
this.b = str;
|
|
this.c = list;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.b;
|
|
List<C6509cV> list = this.c;
|
|
StringBuilder sb = new StringBuilder("PointRateInquiryRequest(pointXCustomerID=");
|
|
sb.append(str);
|
|
sb.append(", refIds=");
|
|
sb.append(list);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (this.b.hashCode() * 31) + this.c.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof C6243cN)) {
|
|
return false;
|
|
}
|
|
C6243cN c6243cN = (C6243cN) obj;
|
|
return C14957gcv.b((Object) this.b, (Object) c6243cN.b) && C14957gcv.b(this.c, c6243cN.c);
|
|
}
|
|
}
|