111 lines
5.9 KiB
Java
111 lines
5.9 KiB
Java
package com.sistemasolton.itranvias.home.presentation.freetransfer;
|
|
|
|
import com.sistemasolton.itranvias.home.data.remote.dto.infodto.InfoDto;
|
|
import kotlin.Metadata;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* JADX INFO: compiled from: FreeTransferState.kt */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
@Metadata(d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u000f\n\u0002\u0010\b\n\u0002\b\u0002\b\u0087\b\u0018\u00002\u00020\u0001B3\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u0012\b\b\u0002\u0010\u0004\u001a\u00020\u0003\u0012\n\b\u0002\u0010\u0005\u001a\u0004\u0018\u00010\u0006\u0012\n\b\u0002\u0010\u0007\u001a\u0004\u0018\u00010\b¢\u0006\u0004\b\t\u0010\nJ\t\u0010\u0010\u001a\u00020\u0003HÆ\u0003J\t\u0010\u0011\u001a\u00020\u0003HÆ\u0003J\u000b\u0010\u0012\u001a\u0004\u0018\u00010\u0006HÆ\u0003J\u000b\u0010\u0013\u001a\u0004\u0018\u00010\bHÆ\u0003J5\u0010\u0014\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00032\n\b\u0002\u0010\u0005\u001a\u0004\u0018\u00010\u00062\n\b\u0002\u0010\u0007\u001a\u0004\u0018\u00010\bHÆ\u0001J\u0013\u0010\u0015\u001a\u00020\u00032\b\u0010\u0016\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0017\u001a\u00020\u0018HÖ\u0001J\t\u0010\u0019\u001a\u00020\u0006HÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0002\u0010\u000bR\u0011\u0010\u0004\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0004\u0010\u000bR\u0013\u0010\u0005\u001a\u0004\u0018\u00010\u0006¢\u0006\b\n\u0000\u001a\u0004\b\f\u0010\rR\u0013\u0010\u0007\u001a\u0004\u0018\u00010\b¢\u0006\b\n\u0000\u001a\u0004\b\u000e\u0010\u000f¨\u0006\u001a"}, d2 = {"Lcom/sistemasolton/itranvias/home/presentation/freetransfer/FreeTransferState;", "", "isLoading", "", "isError", "errorMessage", "", "infoDto", "Lcom/sistemasolton/itranvias/home/data/remote/dto/infodto/InfoDto;", "<init>", "(ZZLjava/lang/String;Lcom/sistemasolton/itranvias/home/data/remote/dto/infodto/InfoDto;)V", "()Z", "getErrorMessage", "()Ljava/lang/String;", "getInfoDto", "()Lcom/sistemasolton/itranvias/home/data/remote/dto/infodto/InfoDto;", "component1", "component2", "component3", "component4", "copy", "equals", "other", "hashCode", "", "toString", "composeApp_release"}, k = 1, mv = {2, 1, 0}, xi = 48)
|
|
public final /* data */ class FreeTransferState {
|
|
public static final int $stable = 8;
|
|
private final String errorMessage;
|
|
private final InfoDto infoDto;
|
|
private final boolean isError;
|
|
private final boolean isLoading;
|
|
|
|
public FreeTransferState() {
|
|
this(false, false, null, null, 15, null);
|
|
}
|
|
|
|
public static /* synthetic */ FreeTransferState copy$default(FreeTransferState freeTransferState, boolean z, boolean z2, String str, InfoDto infoDto, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
z = freeTransferState.isLoading;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
z2 = freeTransferState.isError;
|
|
}
|
|
if ((i & 4) != 0) {
|
|
str = freeTransferState.errorMessage;
|
|
}
|
|
if ((i & 8) != 0) {
|
|
infoDto = freeTransferState.infoDto;
|
|
}
|
|
return freeTransferState.copy(z, z2, str, infoDto);
|
|
}
|
|
|
|
/* JADX INFO: renamed from: component1, reason: from getter */
|
|
public final boolean getIsLoading() {
|
|
return this.isLoading;
|
|
}
|
|
|
|
/* JADX INFO: renamed from: component2, reason: from getter */
|
|
public final boolean getIsError() {
|
|
return this.isError;
|
|
}
|
|
|
|
/* JADX INFO: renamed from: component3, reason: from getter */
|
|
public final String getErrorMessage() {
|
|
return this.errorMessage;
|
|
}
|
|
|
|
/* JADX INFO: renamed from: component4, reason: from getter */
|
|
public final InfoDto getInfoDto() {
|
|
return this.infoDto;
|
|
}
|
|
|
|
public final FreeTransferState copy(boolean isLoading, boolean isError, String errorMessage, InfoDto infoDto) {
|
|
return new FreeTransferState(isLoading, isError, errorMessage, infoDto);
|
|
}
|
|
|
|
public boolean equals(Object other) {
|
|
if (this == other) {
|
|
return true;
|
|
}
|
|
if (!(other instanceof FreeTransferState)) {
|
|
return false;
|
|
}
|
|
FreeTransferState freeTransferState = (FreeTransferState) other;
|
|
return this.isLoading == freeTransferState.isLoading && this.isError == freeTransferState.isError && Intrinsics.areEqual(this.errorMessage, freeTransferState.errorMessage) && Intrinsics.areEqual(this.infoDto, freeTransferState.infoDto);
|
|
}
|
|
|
|
public int hashCode() {
|
|
int iHashCode = ((Boolean.hashCode(this.isLoading) * 31) + Boolean.hashCode(this.isError)) * 31;
|
|
String str = this.errorMessage;
|
|
int iHashCode2 = (iHashCode + (str == null ? 0 : str.hashCode())) * 31;
|
|
InfoDto infoDto = this.infoDto;
|
|
return iHashCode2 + (infoDto != null ? infoDto.hashCode() : 0);
|
|
}
|
|
|
|
public String toString() {
|
|
return "FreeTransferState(isLoading=" + this.isLoading + ", isError=" + this.isError + ", errorMessage=" + this.errorMessage + ", infoDto=" + this.infoDto + ")";
|
|
}
|
|
|
|
public FreeTransferState(boolean z, boolean z2, String str, InfoDto infoDto) {
|
|
this.isLoading = z;
|
|
this.isError = z2;
|
|
this.errorMessage = str;
|
|
this.infoDto = infoDto;
|
|
}
|
|
|
|
public /* synthetic */ FreeTransferState(boolean z, boolean z2, String str, InfoDto infoDto, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this((i & 1) != 0 ? false : z, (i & 2) != 0 ? false : z2, (i & 4) != 0 ? null : str, (i & 8) != 0 ? null : infoDto);
|
|
}
|
|
|
|
public final boolean isLoading() {
|
|
return this.isLoading;
|
|
}
|
|
|
|
public final boolean isError() {
|
|
return this.isError;
|
|
}
|
|
|
|
public final String getErrorMessage() {
|
|
return this.errorMessage;
|
|
}
|
|
|
|
public final InfoDto getInfoDto() {
|
|
return this.infoDto;
|
|
}
|
|
} |