package com.martsnew.data.model.response;

import P6.g;
import d5.AbstractC0844a;
import o6.InterfaceC1389i;
import o6.InterfaceC1392l;

/* JADX INFO: loaded from: classes.dex */
@InterfaceC1392l(generateAdapter = true)
public final class UserResponse {

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    public final long f10983a;

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    public final String f10984b;

    /* JADX INFO: renamed from: c, reason: collision with root package name */
    public final String f10985c;

    /* JADX INFO: renamed from: d, reason: collision with root package name */
    public final int f10986d;

    /* JADX INFO: renamed from: e, reason: collision with root package name */
    public final String f10987e;

    /* JADX INFO: renamed from: f, reason: collision with root package name */
    public final int f10988f;

    /* JADX INFO: renamed from: g, reason: collision with root package name */
    public final AvatarResponse f10989g;

    public UserResponse(@InterfaceC1389i(name = "id") long j8, @InterfaceC1389i(name = "name") String str, @InterfaceC1389i(name = "email") String str2, @InterfaceC1389i(name = "status") int i, @InterfaceC1389i(name = "country") String str3, @InterfaceC1389i(name = "is_email_verified") int i5, @InterfaceC1389i(name = "avatar") AvatarResponse avatarResponse) {
        g.e(str, "name");
        g.e(str2, "email");
        this.f10983a = j8;
        this.f10984b = str;
        this.f10985c = str2;
        this.f10986d = i;
        this.f10987e = str3;
        this.f10988f = i5;
        this.f10989g = avatarResponse;
    }

    public final UserResponse copy(@InterfaceC1389i(name = "id") long j8, @InterfaceC1389i(name = "name") String str, @InterfaceC1389i(name = "email") String str2, @InterfaceC1389i(name = "status") int i, @InterfaceC1389i(name = "country") String str3, @InterfaceC1389i(name = "is_email_verified") int i5, @InterfaceC1389i(name = "avatar") AvatarResponse avatarResponse) {
        g.e(str, "name");
        g.e(str2, "email");
        return new UserResponse(j8, str, str2, i, str3, i5, avatarResponse);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof UserResponse)) {
            return false;
        }
        UserResponse userResponse = (UserResponse) obj;
        return this.f10983a == userResponse.f10983a && g.a(this.f10984b, userResponse.f10984b) && g.a(this.f10985c, userResponse.f10985c) && this.f10986d == userResponse.f10986d && g.a(this.f10987e, userResponse.f10987e) && this.f10988f == userResponse.f10988f && g.a(this.f10989g, userResponse.f10989g);
    }

    public final int hashCode() {
        long j8 = this.f10983a;
        int iG = (AbstractC0844a.g(AbstractC0844a.g(((int) (j8 ^ (j8 >>> 32))) * 31, 31, this.f10984b), 31, this.f10985c) + this.f10986d) * 31;
        String str = this.f10987e;
        int iHashCode = (((iG + (str == null ? 0 : str.hashCode())) * 31) + this.f10988f) * 31;
        AvatarResponse avatarResponse = this.f10989g;
        return iHashCode + (avatarResponse != null ? avatarResponse.hashCode() : 0);
    }

    public final String toString() {
        return "UserResponse(id=" + this.f10983a + ", name=" + this.f10984b + ", email=" + this.f10985c + ", status=" + this.f10986d + ", country=" + this.f10987e + ", isEmailVerified=" + this.f10988f + ", avatar=" + this.f10989g + ")";
    }
}
