package com.sistemasolton.itranvias.home.data.local.entity; import kotlin.Metadata; import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.jvm.internal.Intrinsics; /* JADX INFO: compiled from: InfoEntity.kt */ /* JADX INFO: loaded from: classes2.dex */ @Metadata(d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\n\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0087\b\u0018\u00002\u00020\u0001B\u0019\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005¢\u0006\u0004\b\u0006\u0010\u0007J\t\u0010\f\u001a\u00020\u0003HÆ\u0003J\t\u0010\r\u001a\u00020\u0005HÆ\u0003J\u001d\u0010\u000e\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0005HÆ\u0001J\u0013\u0010\u000f\u001a\u00020\u00102\b\u0010\u0011\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0012\u001a\u00020\u0003HÖ\u0001J\t\u0010\u0013\u001a\u00020\u0005HÖ\u0001R\u0016\u0010\u0002\u001a\u00020\u00038\u0006X\u0087\u0004¢\u0006\b\n\u0000\u001a\u0004\b\b\u0010\tR\u0011\u0010\u0004\u001a\u00020\u0005¢\u0006\b\n\u0000\u001a\u0004\b\n\u0010\u000b¨\u0006\u0014"}, d2 = {"Lcom/sistemasolton/itranvias/home/data/local/entity/InfoEntity;", "", "id", "", "json", "", "", "(ILjava/lang/String;)V", "getId", "()I", "getJson", "()Ljava/lang/String;", "component1", "component2", "copy", "equals", "", "other", "hashCode", "toString", "composeApp_release"}, k = 1, mv = {2, 1, 0}, xi = 48) public final /* data */ class InfoEntity { public static final int $stable = 0; private final int id; private final String json; public static /* synthetic */ InfoEntity copy$default(InfoEntity infoEntity, int i, String str, int i2, Object obj) { if ((i2 & 1) != 0) { i = infoEntity.id; } if ((i2 & 2) != 0) { str = infoEntity.json; } return infoEntity.copy(i, str); } /* JADX INFO: renamed from: component1, reason: from getter */ public final int getId() { return this.id; } /* JADX INFO: renamed from: component2, reason: from getter */ public final String getJson() { return this.json; } public final InfoEntity copy(int id, String json) { Intrinsics.checkNotNullParameter(json, "json"); return new InfoEntity(id, json); } public boolean equals(Object other) { if (this == other) { return true; } if (!(other instanceof InfoEntity)) { return false; } InfoEntity infoEntity = (InfoEntity) other; return this.id == infoEntity.id && Intrinsics.areEqual(this.json, infoEntity.json); } public int hashCode() { return (Integer.hashCode(this.id) * 31) + this.json.hashCode(); } public String toString() { return "InfoEntity(id=" + this.id + ", json=" + this.json + ")"; } public InfoEntity(int i, String json) { Intrinsics.checkNotNullParameter(json, "json"); this.id = i; this.json = json; } public /* synthetic */ InfoEntity(int i, String str, int i2, DefaultConstructorMarker defaultConstructorMarker) { this((i2 & 1) != 0 ? 0 : i, str); } public final int getId() { return this.id; } public final String getJson() { return this.json; } }