package com.martsnew.data.model.response;

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

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

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

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

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

    public AvatarResponse(@InterfaceC1389i(name = "id") long j8, @InterfaceC1389i(name = "url") String str, @InterfaceC1389i(name = "path") String str2) {
        this.f10660a = j8;
        this.f10661b = str;
        this.f10662c = str2;
    }

    public final AvatarResponse copy(@InterfaceC1389i(name = "id") long j8, @InterfaceC1389i(name = "url") String str, @InterfaceC1389i(name = "path") String str2) {
        return new AvatarResponse(j8, str, str2);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof AvatarResponse)) {
            return false;
        }
        AvatarResponse avatarResponse = (AvatarResponse) obj;
        return this.f10660a == avatarResponse.f10660a && g.a(this.f10661b, avatarResponse.f10661b) && g.a(this.f10662c, avatarResponse.f10662c);
    }

    public final int hashCode() {
        long j8 = this.f10660a;
        int i = ((int) (j8 ^ (j8 >>> 32))) * 31;
        String str = this.f10661b;
        int iHashCode = (i + (str == null ? 0 : str.hashCode())) * 31;
        String str2 = this.f10662c;
        return iHashCode + (str2 != null ? str2.hashCode() : 0);
    }

    public final String toString() {
        return "AvatarResponse(id=" + this.f10660a + ", url=" + this.f10661b + ", path=" + this.f10662c + ")";
    }
}
