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

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

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

    public InfoResponse(@InterfaceC1389i(name = "ip") String str, @InterfaceC1389i(name = "country") String str2) {
        this.f10812a = str;
        this.f10813b = str2;
    }

    public final InfoResponse copy(@InterfaceC1389i(name = "ip") String str, @InterfaceC1389i(name = "country") String str2) {
        return new InfoResponse(str, str2);
    }

    public final boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof InfoResponse)) {
            return false;
        }
        InfoResponse infoResponse = (InfoResponse) obj;
        return g.a(this.f10812a, infoResponse.f10812a) && g.a(this.f10813b, infoResponse.f10813b);
    }

    public final int hashCode() {
        String str = this.f10812a;
        int iHashCode = (str == null ? 0 : str.hashCode()) * 31;
        String str2 = this.f10813b;
        return iHashCode + (str2 != null ? str2.hashCode() : 0);
    }

    public final String toString() {
        return this.f10813b + ", " + this.f10812a;
    }
}
