50 lines
1.3 KiB
Java
50 lines
1.3 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import okhttp3.MultipartBody;
|
|
import okhttp3.RequestBody;
|
|
|
|
/* renamed from: o.z, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public final class C17705z {
|
|
|
|
@SerializedName("documentFile")
|
|
public final MultipartBody.Part a;
|
|
|
|
@SerializedName("applicationUuid")
|
|
public final RequestBody e;
|
|
|
|
public C17705z(RequestBody requestBody, MultipartBody.Part part) {
|
|
C14957gcv.e(requestBody, "");
|
|
C14957gcv.e(part, "");
|
|
this.e = requestBody;
|
|
this.a = part;
|
|
}
|
|
|
|
public final String toString() {
|
|
RequestBody requestBody = this.e;
|
|
MultipartBody.Part part = this.a;
|
|
StringBuilder sb = new StringBuilder("HmlUploadCidRequest(applicationUuid=");
|
|
sb.append(requestBody);
|
|
sb.append(", documentFile=");
|
|
sb.append(part);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (this.e.hashCode() * 31) + this.a.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof C17705z)) {
|
|
return false;
|
|
}
|
|
C17705z c17705z = (C17705z) obj;
|
|
return C14957gcv.b(this.e, c17705z.e) && C14957gcv.b(this.a, c17705z.a);
|
|
}
|
|
}
|