41 lines
1016 B
Java
41 lines
1016 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class SsZ {
|
|
|
|
@SerializedName("interestRate")
|
|
public final List<WZR> c;
|
|
|
|
@SerializedName("principal")
|
|
public final String e;
|
|
|
|
public final String toString() {
|
|
String str = this.e;
|
|
List<WZR> list = this.c;
|
|
StringBuilder sb = new StringBuilder("HmlPromotionOptionEntity(principal=");
|
|
sb.append(str);
|
|
sb.append(", interestRate=");
|
|
sb.append(list);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (this.e.hashCode() * 31) + this.c.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof SsZ)) {
|
|
return false;
|
|
}
|
|
SsZ ssZ = (SsZ) obj;
|
|
return C14957gcv.b((Object) this.e, (Object) ssZ.e) && C14957gcv.b(this.c, ssZ.c);
|
|
}
|
|
}
|