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 CountryResponse {

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

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

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

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

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

    public CountryResponse(@InterfaceC1389i(name = "id") long j8, @InterfaceC1389i(name = "iso_3166_1") String str, @InterfaceC1389i(name = "english_name") String str2, @InterfaceC1389i(name = "slug") String str3, @InterfaceC1389i(name = "publish") Integer num) {
        this.f10708a = j8;
        this.f10709b = str;
        this.f10710c = str2;
        this.f10711d = str3;
        this.f10712e = num;
    }

    public final CountryResponse copy(@InterfaceC1389i(name = "id") long j8, @InterfaceC1389i(name = "iso_3166_1") String str, @InterfaceC1389i(name = "english_name") String str2, @InterfaceC1389i(name = "slug") String str3, @InterfaceC1389i(name = "publish") Integer num) {
        return new CountryResponse(j8, str, str2, str3, num);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof CountryResponse)) {
            return false;
        }
        CountryResponse countryResponse = (CountryResponse) obj;
        return this.f10708a == countryResponse.f10708a && g.a(this.f10709b, countryResponse.f10709b) && g.a(this.f10710c, countryResponse.f10710c) && g.a(this.f10711d, countryResponse.f10711d) && g.a(this.f10712e, countryResponse.f10712e);
    }

    public final int hashCode() {
        long j8 = this.f10708a;
        int i = ((int) (j8 ^ (j8 >>> 32))) * 31;
        String str = this.f10709b;
        int iHashCode = (i + (str == null ? 0 : str.hashCode())) * 31;
        String str2 = this.f10710c;
        int iHashCode2 = (iHashCode + (str2 == null ? 0 : str2.hashCode())) * 31;
        String str3 = this.f10711d;
        int iHashCode3 = (iHashCode2 + (str3 == null ? 0 : str3.hashCode())) * 31;
        Integer num = this.f10712e;
        return iHashCode3 + (num != null ? num.hashCode() : 0);
    }

    public final String toString() {
        return "CountryResponse(id=" + this.f10708a + ", iso=" + this.f10709b + ", name=" + this.f10710c + ", slug=" + this.f10711d + ", publish=" + this.f10712e + ")";
    }
}
