Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations;
|
||||
|
||||
import com.adif.elcanomovil.commonNavGraph.arguments.NavArguments;
|
||||
import com.adif.elcanomovil.serviceNetworking.ServicePaths;
|
||||
import com.adif.elcanomovil.serviceNetworking.circulations.model.request.OneOrSeveralPathsRequest;
|
||||
import com.adif.elcanomovil.serviceNetworking.circulations.model.request.TrafficCirculationPathRequest;
|
||||
import com.adif.elcanomovil.serviceNetworking.circulations.model.response.CommercialPathRouteInfoResponse;
|
||||
import com.adif.elcanomovil.serviceNetworking.circulations.model.response.CommercialPathStepSideInfoResponse;
|
||||
import com.adif.elcanomovil.serviceNetworking.circulations.model.response.CommercialRouteInfoResponse;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.coroutines.Continuation;
|
||||
import retrofit2.http.Body;
|
||||
import retrofit2.http.Headers;
|
||||
import retrofit2.http.POST;
|
||||
|
||||
@Metadata(d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\bf\u0018\u00002\u00020\u0001J\u0018\u0010\u0002\u001a\u00020\u00032\b\b\u0001\u0010\u0004\u001a\u00020\u0005H§@¢\u0006\u0002\u0010\u0006J\u0018\u0010\u0007\u001a\u00020\b2\b\b\u0001\u0010\u0004\u001a\u00020\u0005H§@¢\u0006\u0002\u0010\u0006J\u0018\u0010\t\u001a\u00020\u00032\b\b\u0001\u0010\u0004\u001a\u00020\u0005H§@¢\u0006\u0002\u0010\u0006J\u0018\u0010\n\u001a\u00020\u000b2\b\b\u0001\u0010\u0004\u001a\u00020\fH§@¢\u0006\u0002\u0010\rJ\u0018\u0010\u000e\u001a\u00020\u000b2\b\b\u0001\u0010\u0004\u001a\u00020\fH§@¢\u0006\u0002\u0010\r¨\u0006\u000f"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/CirculationService;", "", NavArguments.ARG_DYNAMIC_ARRIVALS, "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathStepSideInfoResponse;", "request", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/TrafficCirculationPathRequest;", "(Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/TrafficCirculationPathRequest;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "betweenStations", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialRouteInfoResponse;", NavArguments.ARG_DYNAMIC_DEPARTURES, "onePaths", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathRouteInfoResponse;", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/OneOrSeveralPathsRequest;", "(Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/OneOrSeveralPathsRequest;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;", "severalPaths", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public interface CirculationService {
|
||||
@Headers({ServicePaths.Headers.contentType, ServicePaths.Headers.apiManagerUserKeyCirculations})
|
||||
@POST(ServicePaths.CirculationService.arrivals)
|
||||
Object arrivals(@Body TrafficCirculationPathRequest trafficCirculationPathRequest, Continuation<? super CommercialPathStepSideInfoResponse> continuation);
|
||||
|
||||
@Headers({ServicePaths.Headers.contentType, ServicePaths.Headers.apiManagerUserKeyCirculations})
|
||||
@POST(ServicePaths.CirculationService.betweenStations)
|
||||
Object betweenStations(@Body TrafficCirculationPathRequest trafficCirculationPathRequest, Continuation<? super CommercialRouteInfoResponse> continuation);
|
||||
|
||||
@Headers({ServicePaths.Headers.contentType, ServicePaths.Headers.apiManagerUserKeyCirculations})
|
||||
@POST(ServicePaths.CirculationService.departures)
|
||||
Object departures(@Body TrafficCirculationPathRequest trafficCirculationPathRequest, Continuation<? super CommercialPathStepSideInfoResponse> continuation);
|
||||
|
||||
@Headers({ServicePaths.Headers.contentType, ServicePaths.Headers.apiManagerUserKeyCirculations})
|
||||
@POST(ServicePaths.CirculationService.onePaths)
|
||||
Object onePaths(@Body OneOrSeveralPathsRequest oneOrSeveralPathsRequest, Continuation<? super CommercialPathRouteInfoResponse> continuation);
|
||||
|
||||
@Headers({ServicePaths.Headers.contentType, ServicePaths.Headers.apiManagerUserKeyCirculations})
|
||||
@POST(ServicePaths.CirculationService.severalPaths)
|
||||
Object severalPaths(@Body OneOrSeveralPathsRequest oneOrSeveralPathsRequest, Continuation<? super CommercialPathRouteInfoResponse> continuation);
|
||||
}
|
||||
@@ -0,0 +1,581 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations;
|
||||
|
||||
import com.adif.elcanomovil.commonNavGraph.arguments.NavArguments;
|
||||
import com.adif.elcanomovil.serviceNetworking.circulations.model.request.TrafficType;
|
||||
import com.google.android.gms.measurement.internal.a;
|
||||
import java.util.List;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.enums.EnumEntries;
|
||||
import kotlin.enums.EnumEntriesKt;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u0000D\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\t\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010 \n\u0002\u0010\b\n\u0002\b\u001a\n\u0002\u0010\u000b\n\u0002\b\b\b\u0086\b\u0018\u00002\u00020\u0001:\u00040123BK\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u0012\u0006\u0010\u0006\u001a\u00020\u0007\u0012\u0006\u0010\b\u001a\u00020\u0007\u0012\u0006\u0010\t\u001a\u00020\n\u0012\u0006\u0010\u000b\u001a\u00020\f\u0012\u0006\u0010\r\u001a\u00020\u000e\u0012\f\u0010\u000f\u001a\b\u0012\u0004\u0012\u00020\u00110\u0010¢\u0006\u0002\u0010\u0012J\t\u0010\"\u001a\u00020\u0003HÆ\u0003J\t\u0010#\u001a\u00020\u0005HÆ\u0003J\t\u0010$\u001a\u00020\u0007HÆ\u0003J\t\u0010%\u001a\u00020\u0007HÆ\u0003J\t\u0010&\u001a\u00020\nHÆ\u0003J\t\u0010'\u001a\u00020\fHÆ\u0003J\t\u0010(\u001a\u00020\u000eHÆ\u0003J\u000f\u0010)\u001a\b\u0012\u0004\u0012\u00020\u00110\u0010HÆ\u0003J_\u0010*\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00052\b\b\u0002\u0010\u0006\u001a\u00020\u00072\b\b\u0002\u0010\b\u001a\u00020\u00072\b\b\u0002\u0010\t\u001a\u00020\n2\b\b\u0002\u0010\u000b\u001a\u00020\f2\b\b\u0002\u0010\r\u001a\u00020\u000e2\u000e\b\u0002\u0010\u000f\u001a\b\u0012\u0004\u0012\u00020\u00110\u0010HÆ\u0001J\u0013\u0010+\u001a\u00020,2\b\u0010-\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010.\u001a\u00020\u0011HÖ\u0001J\t\u0010/\u001a\u00020\u0007HÖ\u0001R\u0017\u0010\u000f\u001a\b\u0012\u0004\u0012\u00020\u00110\u0010¢\u0006\b\n\u0000\u001a\u0004\b\u0013\u0010\u0014R\u0011\u0010\u0004\u001a\u00020\u0005¢\u0006\b\n\u0000\u001a\u0004\b\u0015\u0010\u0016R\u0011\u0010\r\u001a\u00020\u000e¢\u0006\b\n\u0000\u001a\u0004\b\u0017\u0010\u0018R\u0011\u0010\u0006\u001a\u00020\u0007¢\u0006\b\n\u0000\u001a\u0004\b\u0019\u0010\u001aR\u0011\u0010\b\u001a\u00020\u0007¢\u0006\b\n\u0000\u001a\u0004\b\u001b\u0010\u001aR\u0011\u0010\u000b\u001a\u00020\f¢\u0006\b\n\u0000\u001a\u0004\b\u001c\u0010\u001dR\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u001e\u0010\u001fR\u0011\u0010\t\u001a\u00020\n¢\u0006\b\n\u0000\u001a\u0004\b \u0010!¨\u00064"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO;", "", "timestamp", "", "commercialPathKey", "Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$ComercialPathKeyDTO;", "line", "", "observation", NavArguments.ARG_DYNAMIC_LINKS_STATION_TRAFFIC, "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/TrafficType;", "opeProComPro", "Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$OpeProComProDTO;", "compositionData", "Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CompositionDataDTO;", "announceableStations", "", "", "(JLcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$ComercialPathKeyDTO;Ljava/lang/String;Ljava/lang/String;Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/TrafficType;Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$OpeProComProDTO;Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CompositionDataDTO;Ljava/util/List;)V", "getAnnounceableStations", "()Ljava/util/List;", "getCommercialPathKey", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$ComercialPathKeyDTO;", "getCompositionData", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CompositionDataDTO;", "getLine", "()Ljava/lang/String;", "getObservation", "getOpeProComPro", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$OpeProComProDTO;", "getTimestamp", "()J", "getTrafficType", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/TrafficType;", "component1", "component2", "component3", "component4", "component5", "component6", "component7", "component8", "copy", "equals", "", "other", "hashCode", "toString", "ComercialPathKeyDTO", "CommercialCirculationKeyDTO", "CompositionDataDTO", "OpeProComProDTO", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final /* data */ class CommercialPathInfoDTO {
|
||||
private final List<Integer> announceableStations;
|
||||
private final ComercialPathKeyDTO commercialPathKey;
|
||||
private final CompositionDataDTO compositionData;
|
||||
private final String line;
|
||||
private final String observation;
|
||||
private final OpeProComProDTO opeProComPro;
|
||||
private final long timestamp;
|
||||
private final TrafficType trafficType;
|
||||
|
||||
@Metadata(d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\f\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\b\u0086\b\u0018\u00002\u00020\u0001B\u001d\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u0012\u0006\u0010\u0006\u001a\u00020\u0005¢\u0006\u0002\u0010\u0007J\t\u0010\r\u001a\u00020\u0003HÆ\u0003J\t\u0010\u000e\u001a\u00020\u0005HÆ\u0003J\t\u0010\u000f\u001a\u00020\u0005HÆ\u0003J'\u0010\u0010\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00052\b\b\u0002\u0010\u0006\u001a\u00020\u0005HÆ\u0001J\u0013\u0010\u0011\u001a\u00020\u00122\b\u0010\u0013\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0014\u001a\u00020\u0015HÖ\u0001J\t\u0010\u0016\u001a\u00020\u0005HÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\b\u0010\tR\u0011\u0010\u0006\u001a\u00020\u0005¢\u0006\b\n\u0000\u001a\u0004\b\n\u0010\u000bR\u0011\u0010\u0004\u001a\u00020\u0005¢\u0006\b\n\u0000\u001a\u0004\b\f\u0010\u000b¨\u0006\u0017"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$ComercialPathKeyDTO;", "", "commercialCirculationKey", "Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CommercialCirculationKeyDTO;", NavArguments.ARG_DYNAMIC_LINKS_STATION_CODE, "", NavArguments.ARG_DYNAMIC_LINKS_STATION_TO_CODE, "(Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CommercialCirculationKeyDTO;Ljava/lang/String;Ljava/lang/String;)V", "getCommercialCirculationKey", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CommercialCirculationKeyDTO;", "getDestinationStationCode", "()Ljava/lang/String;", "getOriginStationCode", "component1", "component2", "component3", "copy", "equals", "", "other", "hashCode", "", "toString", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public static final /* data */ class ComercialPathKeyDTO {
|
||||
private final CommercialCirculationKeyDTO commercialCirculationKey;
|
||||
private final String destinationStationCode;
|
||||
private final String originStationCode;
|
||||
|
||||
public ComercialPathKeyDTO(CommercialCirculationKeyDTO commercialCirculationKey, String originStationCode, String destinationStationCode) {
|
||||
Intrinsics.checkNotNullParameter(commercialCirculationKey, "commercialCirculationKey");
|
||||
Intrinsics.checkNotNullParameter(originStationCode, "originStationCode");
|
||||
Intrinsics.checkNotNullParameter(destinationStationCode, "destinationStationCode");
|
||||
this.commercialCirculationKey = commercialCirculationKey;
|
||||
this.originStationCode = originStationCode;
|
||||
this.destinationStationCode = destinationStationCode;
|
||||
}
|
||||
|
||||
public static /* synthetic */ ComercialPathKeyDTO copy$default(ComercialPathKeyDTO comercialPathKeyDTO, CommercialCirculationKeyDTO commercialCirculationKeyDTO, String str, String str2, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
commercialCirculationKeyDTO = comercialPathKeyDTO.commercialCirculationKey;
|
||||
}
|
||||
if ((i & 2) != 0) {
|
||||
str = comercialPathKeyDTO.originStationCode;
|
||||
}
|
||||
if ((i & 4) != 0) {
|
||||
str2 = comercialPathKeyDTO.destinationStationCode;
|
||||
}
|
||||
return comercialPathKeyDTO.copy(commercialCirculationKeyDTO, str, str2);
|
||||
}
|
||||
|
||||
/* renamed from: component1, reason: from getter */
|
||||
public final CommercialCirculationKeyDTO getCommercialCirculationKey() {
|
||||
return this.commercialCirculationKey;
|
||||
}
|
||||
|
||||
/* renamed from: component2, reason: from getter */
|
||||
public final String getOriginStationCode() {
|
||||
return this.originStationCode;
|
||||
}
|
||||
|
||||
/* renamed from: component3, reason: from getter */
|
||||
public final String getDestinationStationCode() {
|
||||
return this.destinationStationCode;
|
||||
}
|
||||
|
||||
public final ComercialPathKeyDTO copy(CommercialCirculationKeyDTO commercialCirculationKey, String originStationCode, String destinationStationCode) {
|
||||
Intrinsics.checkNotNullParameter(commercialCirculationKey, "commercialCirculationKey");
|
||||
Intrinsics.checkNotNullParameter(originStationCode, "originStationCode");
|
||||
Intrinsics.checkNotNullParameter(destinationStationCode, "destinationStationCode");
|
||||
return new ComercialPathKeyDTO(commercialCirculationKey, originStationCode, destinationStationCode);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof ComercialPathKeyDTO)) {
|
||||
return false;
|
||||
}
|
||||
ComercialPathKeyDTO comercialPathKeyDTO = (ComercialPathKeyDTO) other;
|
||||
return Intrinsics.areEqual(this.commercialCirculationKey, comercialPathKeyDTO.commercialCirculationKey) && Intrinsics.areEqual(this.originStationCode, comercialPathKeyDTO.originStationCode) && Intrinsics.areEqual(this.destinationStationCode, comercialPathKeyDTO.destinationStationCode);
|
||||
}
|
||||
|
||||
public final CommercialCirculationKeyDTO getCommercialCirculationKey() {
|
||||
return this.commercialCirculationKey;
|
||||
}
|
||||
|
||||
public final String getDestinationStationCode() {
|
||||
return this.destinationStationCode;
|
||||
}
|
||||
|
||||
public final String getOriginStationCode() {
|
||||
return this.originStationCode;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.destinationStationCode.hashCode() + a.d(this.originStationCode, this.commercialCirculationKey.hashCode() * 31, 31);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("ComercialPathKeyDTO(commercialCirculationKey=");
|
||||
sb.append(this.commercialCirculationKey);
|
||||
sb.append(", originStationCode=");
|
||||
sb.append(this.originStationCode);
|
||||
sb.append(", destinationStationCode=");
|
||||
return a.n(sb, this.destinationStationCode, ')');
|
||||
}
|
||||
}
|
||||
|
||||
@Metadata(d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\t\n\u0000\n\u0002\u0010\u000e\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\b\u0086\b\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005¢\u0006\u0002\u0010\u0006J\t\u0010\u000b\u001a\u00020\u0003HÆ\u0003J\t\u0010\f\u001a\u00020\u0005HÆ\u0003J\u001d\u0010\r\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0005HÆ\u0001J\u0013\u0010\u000e\u001a\u00020\u000f2\b\u0010\u0010\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0011\u001a\u00020\u0012HÖ\u0001J\t\u0010\u0013\u001a\u00020\u0005HÖ\u0001R\u0011\u0010\u0004\u001a\u00020\u0005¢\u0006\b\n\u0000\u001a\u0004\b\u0007\u0010\bR\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\t\u0010\n¨\u0006\u0014"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CommercialCirculationKeyDTO;", "", NavArguments.ARG_DYNAMIC_LINKS_LAUNCHDATE, "", NavArguments.ARG_DYNAMIC_LINKS_COMMERCIAL_NUMBER, "", "(JLjava/lang/String;)V", "getCommercialNumber", "()Ljava/lang/String;", "getLaunchingDate", "()J", "component1", "component2", "copy", "equals", "", "other", "hashCode", "", "toString", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public static final /* data */ class CommercialCirculationKeyDTO {
|
||||
private final String commercialNumber;
|
||||
private final long launchingDate;
|
||||
|
||||
public CommercialCirculationKeyDTO(long j4, String commercialNumber) {
|
||||
Intrinsics.checkNotNullParameter(commercialNumber, "commercialNumber");
|
||||
this.launchingDate = j4;
|
||||
this.commercialNumber = commercialNumber;
|
||||
}
|
||||
|
||||
public static /* synthetic */ CommercialCirculationKeyDTO copy$default(CommercialCirculationKeyDTO commercialCirculationKeyDTO, long j4, String str, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
j4 = commercialCirculationKeyDTO.launchingDate;
|
||||
}
|
||||
if ((i & 2) != 0) {
|
||||
str = commercialCirculationKeyDTO.commercialNumber;
|
||||
}
|
||||
return commercialCirculationKeyDTO.copy(j4, str);
|
||||
}
|
||||
|
||||
/* renamed from: component1, reason: from getter */
|
||||
public final long getLaunchingDate() {
|
||||
return this.launchingDate;
|
||||
}
|
||||
|
||||
/* renamed from: component2, reason: from getter */
|
||||
public final String getCommercialNumber() {
|
||||
return this.commercialNumber;
|
||||
}
|
||||
|
||||
public final CommercialCirculationKeyDTO copy(long launchingDate, String commercialNumber) {
|
||||
Intrinsics.checkNotNullParameter(commercialNumber, "commercialNumber");
|
||||
return new CommercialCirculationKeyDTO(launchingDate, commercialNumber);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof CommercialCirculationKeyDTO)) {
|
||||
return false;
|
||||
}
|
||||
CommercialCirculationKeyDTO commercialCirculationKeyDTO = (CommercialCirculationKeyDTO) other;
|
||||
return this.launchingDate == commercialCirculationKeyDTO.launchingDate && Intrinsics.areEqual(this.commercialNumber, commercialCirculationKeyDTO.commercialNumber);
|
||||
}
|
||||
|
||||
public final String getCommercialNumber() {
|
||||
return this.commercialNumber;
|
||||
}
|
||||
|
||||
public final long getLaunchingDate() {
|
||||
return this.launchingDate;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.commercialNumber.hashCode() + (Long.hashCode(this.launchingDate) * 31);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("CommercialCirculationKeyDTO(launchingDate=");
|
||||
sb.append(this.launchingDate);
|
||||
sb.append(", commercialNumber=");
|
||||
return a.n(sb, this.commercialNumber, ')');
|
||||
}
|
||||
}
|
||||
|
||||
@Metadata(d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u000e\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0003\b\u0086\b\u0018\u00002\u00020\u0001:\u0002\u0019\u001aB\u001d\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u0012\u0006\u0010\u0006\u001a\u00020\u0007¢\u0006\u0002\u0010\bJ\t\u0010\u000f\u001a\u00020\u0003HÆ\u0003J\t\u0010\u0010\u001a\u00020\u0005HÆ\u0003J\t\u0010\u0011\u001a\u00020\u0007HÆ\u0003J'\u0010\u0012\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00052\b\b\u0002\u0010\u0006\u001a\u00020\u0007HÆ\u0001J\u0013\u0010\u0013\u001a\u00020\u00072\b\u0010\u0014\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0015\u001a\u00020\u0016HÖ\u0001J\t\u0010\u0017\u001a\u00020\u0018HÖ\u0001R\u0011\u0010\u0006\u001a\u00020\u0007¢\u0006\b\n\u0000\u001a\u0004\b\t\u0010\nR\u0011\u0010\u0004\u001a\u00020\u0005¢\u0006\b\n\u0000\u001a\u0004\b\u000b\u0010\fR\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\r\u0010\u000e¨\u0006\u001b"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CompositionDataDTO;", "", "compositionLenghtType", "Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CompositionDataDTO$Length;", "compositionFloorType", "Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CompositionDataDTO$Floor;", "accesible", "", "(Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CompositionDataDTO$Length;Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CompositionDataDTO$Floor;Z)V", "getAccesible", "()Z", "getCompositionFloorType", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CompositionDataDTO$Floor;", "getCompositionLenghtType", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CompositionDataDTO$Length;", "component1", "component2", "component3", "copy", "equals", "other", "hashCode", "", "toString", "", "Floor", "Length", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public static final /* data */ class CompositionDataDTO {
|
||||
private final boolean accesible;
|
||||
private final Floor compositionFloorType;
|
||||
private final Length compositionLenghtType;
|
||||
|
||||
/* JADX WARN: Failed to restore enum class, 'enum' modifier and super class removed */
|
||||
/* JADX WARN: Unknown enum class pattern. Please report as an issue! */
|
||||
@Metadata(d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0010\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0086\u0081\u0002\u0018\u00002\b\u0012\u0004\u0012\u00020\u00000\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0002R\u0011\u0010\u0003\u001a\u00020\u00048F¢\u0006\u0006\u001a\u0004\b\u0003\u0010\u0005j\u0002\b\u0006j\u0002\b\u0007¨\u0006\b"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CompositionDataDTO$Floor;", "", "(Ljava/lang/String;I)V", "isSingle", "", "()Z", "SINGLE", "DOUBLE", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public static final class Floor {
|
||||
private static final /* synthetic */ EnumEntries $ENTRIES;
|
||||
private static final /* synthetic */ Floor[] $VALUES;
|
||||
public static final Floor SINGLE = new Floor("SINGLE", 0);
|
||||
public static final Floor DOUBLE = new Floor("DOUBLE", 1);
|
||||
|
||||
private static final /* synthetic */ Floor[] $values() {
|
||||
return new Floor[]{SINGLE, DOUBLE};
|
||||
}
|
||||
|
||||
static {
|
||||
Floor[] $values = $values();
|
||||
$VALUES = $values;
|
||||
$ENTRIES = EnumEntriesKt.enumEntries($values);
|
||||
}
|
||||
|
||||
private Floor(String str, int i) {
|
||||
}
|
||||
|
||||
public static EnumEntries<Floor> getEntries() {
|
||||
return $ENTRIES;
|
||||
}
|
||||
|
||||
public static Floor valueOf(String str) {
|
||||
return (Floor) Enum.valueOf(Floor.class, str);
|
||||
}
|
||||
|
||||
public static Floor[] values() {
|
||||
return (Floor[]) $VALUES.clone();
|
||||
}
|
||||
|
||||
public final boolean isSingle() {
|
||||
return this == SINGLE;
|
||||
}
|
||||
}
|
||||
|
||||
/* JADX WARN: Failed to restore enum class, 'enum' modifier and super class removed */
|
||||
/* JADX WARN: Unknown enum class pattern. Please report as an issue! */
|
||||
@Metadata(d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0010\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0086\u0081\u0002\u0018\u00002\b\u0012\u0004\u0012\u00020\u00000\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0002R\u0011\u0010\u0003\u001a\u00020\u00048F¢\u0006\u0006\u001a\u0004\b\u0003\u0010\u0005j\u0002\b\u0006j\u0002\b\u0007¨\u0006\b"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$CompositionDataDTO$Length;", "", "(Ljava/lang/String;I)V", "isShort", "", "()Z", "LONG", "SHORT", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public static final class Length {
|
||||
private static final /* synthetic */ EnumEntries $ENTRIES;
|
||||
private static final /* synthetic */ Length[] $VALUES;
|
||||
public static final Length LONG = new Length("LONG", 0);
|
||||
public static final Length SHORT = new Length("SHORT", 1);
|
||||
|
||||
private static final /* synthetic */ Length[] $values() {
|
||||
return new Length[]{LONG, SHORT};
|
||||
}
|
||||
|
||||
static {
|
||||
Length[] $values = $values();
|
||||
$VALUES = $values;
|
||||
$ENTRIES = EnumEntriesKt.enumEntries($values);
|
||||
}
|
||||
|
||||
private Length(String str, int i) {
|
||||
}
|
||||
|
||||
public static EnumEntries<Length> getEntries() {
|
||||
return $ENTRIES;
|
||||
}
|
||||
|
||||
public static Length valueOf(String str) {
|
||||
return (Length) Enum.valueOf(Length.class, str);
|
||||
}
|
||||
|
||||
public static Length[] values() {
|
||||
return (Length[]) $VALUES.clone();
|
||||
}
|
||||
|
||||
public final boolean isShort() {
|
||||
return this == SHORT;
|
||||
}
|
||||
}
|
||||
|
||||
public CompositionDataDTO(Length compositionLenghtType, Floor compositionFloorType, boolean z3) {
|
||||
Intrinsics.checkNotNullParameter(compositionLenghtType, "compositionLenghtType");
|
||||
Intrinsics.checkNotNullParameter(compositionFloorType, "compositionFloorType");
|
||||
this.compositionLenghtType = compositionLenghtType;
|
||||
this.compositionFloorType = compositionFloorType;
|
||||
this.accesible = z3;
|
||||
}
|
||||
|
||||
public static /* synthetic */ CompositionDataDTO copy$default(CompositionDataDTO compositionDataDTO, Length length, Floor floor, boolean z3, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
length = compositionDataDTO.compositionLenghtType;
|
||||
}
|
||||
if ((i & 2) != 0) {
|
||||
floor = compositionDataDTO.compositionFloorType;
|
||||
}
|
||||
if ((i & 4) != 0) {
|
||||
z3 = compositionDataDTO.accesible;
|
||||
}
|
||||
return compositionDataDTO.copy(length, floor, z3);
|
||||
}
|
||||
|
||||
/* renamed from: component1, reason: from getter */
|
||||
public final Length getCompositionLenghtType() {
|
||||
return this.compositionLenghtType;
|
||||
}
|
||||
|
||||
/* renamed from: component2, reason: from getter */
|
||||
public final Floor getCompositionFloorType() {
|
||||
return this.compositionFloorType;
|
||||
}
|
||||
|
||||
/* renamed from: component3, reason: from getter */
|
||||
public final boolean getAccesible() {
|
||||
return this.accesible;
|
||||
}
|
||||
|
||||
public final CompositionDataDTO copy(Length compositionLenghtType, Floor compositionFloorType, boolean accesible) {
|
||||
Intrinsics.checkNotNullParameter(compositionLenghtType, "compositionLenghtType");
|
||||
Intrinsics.checkNotNullParameter(compositionFloorType, "compositionFloorType");
|
||||
return new CompositionDataDTO(compositionLenghtType, compositionFloorType, accesible);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof CompositionDataDTO)) {
|
||||
return false;
|
||||
}
|
||||
CompositionDataDTO compositionDataDTO = (CompositionDataDTO) other;
|
||||
return this.compositionLenghtType == compositionDataDTO.compositionLenghtType && this.compositionFloorType == compositionDataDTO.compositionFloorType && this.accesible == compositionDataDTO.accesible;
|
||||
}
|
||||
|
||||
public final boolean getAccesible() {
|
||||
return this.accesible;
|
||||
}
|
||||
|
||||
public final Floor getCompositionFloorType() {
|
||||
return this.compositionFloorType;
|
||||
}
|
||||
|
||||
public final Length getCompositionLenghtType() {
|
||||
return this.compositionLenghtType;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return Boolean.hashCode(this.accesible) + ((this.compositionFloorType.hashCode() + (this.compositionLenghtType.hashCode() * 31)) * 31);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "CompositionDataDTO(compositionLenghtType=" + this.compositionLenghtType + ", compositionFloorType=" + this.compositionFloorType + ", accesible=" + this.accesible + ')';
|
||||
}
|
||||
}
|
||||
|
||||
@Metadata(d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0002\b\f\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\b\u0086\b\u0018\u00002\u00020\u0001B\u001d\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003¢\u0006\u0002\u0010\u0006J\t\u0010\u000b\u001a\u00020\u0003HÆ\u0003J\t\u0010\f\u001a\u00020\u0003HÆ\u0003J\t\u0010\r\u001a\u00020\u0003HÆ\u0003J'\u0010\u000e\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00032\b\b\u0002\u0010\u0005\u001a\u00020\u0003HÆ\u0001J\u0013\u0010\u000f\u001a\u00020\u00102\b\u0010\u0011\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0012\u001a\u00020\u0013HÖ\u0001J\t\u0010\u0014\u001a\u00020\u0003HÖ\u0001R\u0011\u0010\u0005\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0007\u0010\bR\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\t\u0010\bR\u0011\u0010\u0004\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\n\u0010\b¨\u0006\u0015"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO$OpeProComProDTO;", "", NavArguments.ARG_DYNAMIC_LINKS_OPERATOR, "", "product", NavArguments.ARG_DYNAMIC_LINKS_COMMERCIAL_PRODUCT, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "getCommercialProduct", "()Ljava/lang/String;", "getOperator", "getProduct", "component1", "component2", "component3", "copy", "equals", "", "other", "hashCode", "", "toString", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public static final /* data */ class OpeProComProDTO {
|
||||
private final String commercialProduct;
|
||||
private final String operator;
|
||||
private final String product;
|
||||
|
||||
public OpeProComProDTO(String operator, String product, String commercialProduct) {
|
||||
Intrinsics.checkNotNullParameter(operator, "operator");
|
||||
Intrinsics.checkNotNullParameter(product, "product");
|
||||
Intrinsics.checkNotNullParameter(commercialProduct, "commercialProduct");
|
||||
this.operator = operator;
|
||||
this.product = product;
|
||||
this.commercialProduct = commercialProduct;
|
||||
}
|
||||
|
||||
public static /* synthetic */ OpeProComProDTO copy$default(OpeProComProDTO opeProComProDTO, String str, String str2, String str3, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
str = opeProComProDTO.operator;
|
||||
}
|
||||
if ((i & 2) != 0) {
|
||||
str2 = opeProComProDTO.product;
|
||||
}
|
||||
if ((i & 4) != 0) {
|
||||
str3 = opeProComProDTO.commercialProduct;
|
||||
}
|
||||
return opeProComProDTO.copy(str, str2, str3);
|
||||
}
|
||||
|
||||
/* renamed from: component1, reason: from getter */
|
||||
public final String getOperator() {
|
||||
return this.operator;
|
||||
}
|
||||
|
||||
/* renamed from: component2, reason: from getter */
|
||||
public final String getProduct() {
|
||||
return this.product;
|
||||
}
|
||||
|
||||
/* renamed from: component3, reason: from getter */
|
||||
public final String getCommercialProduct() {
|
||||
return this.commercialProduct;
|
||||
}
|
||||
|
||||
public final OpeProComProDTO copy(String operator, String product, String commercialProduct) {
|
||||
Intrinsics.checkNotNullParameter(operator, "operator");
|
||||
Intrinsics.checkNotNullParameter(product, "product");
|
||||
Intrinsics.checkNotNullParameter(commercialProduct, "commercialProduct");
|
||||
return new OpeProComProDTO(operator, product, commercialProduct);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof OpeProComProDTO)) {
|
||||
return false;
|
||||
}
|
||||
OpeProComProDTO opeProComProDTO = (OpeProComProDTO) other;
|
||||
return Intrinsics.areEqual(this.operator, opeProComProDTO.operator) && Intrinsics.areEqual(this.product, opeProComProDTO.product) && Intrinsics.areEqual(this.commercialProduct, opeProComProDTO.commercialProduct);
|
||||
}
|
||||
|
||||
public final String getCommercialProduct() {
|
||||
return this.commercialProduct;
|
||||
}
|
||||
|
||||
public final String getOperator() {
|
||||
return this.operator;
|
||||
}
|
||||
|
||||
public final String getProduct() {
|
||||
return this.product;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.commercialProduct.hashCode() + a.d(this.product, this.operator.hashCode() * 31, 31);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("OpeProComProDTO(operator=");
|
||||
sb.append(this.operator);
|
||||
sb.append(", product=");
|
||||
sb.append(this.product);
|
||||
sb.append(", commercialProduct=");
|
||||
return a.n(sb, this.commercialProduct, ')');
|
||||
}
|
||||
}
|
||||
|
||||
public CommercialPathInfoDTO(long j4, ComercialPathKeyDTO commercialPathKey, String line, String observation, TrafficType trafficType, OpeProComProDTO opeProComPro, CompositionDataDTO compositionData, List<Integer> announceableStations) {
|
||||
Intrinsics.checkNotNullParameter(commercialPathKey, "commercialPathKey");
|
||||
Intrinsics.checkNotNullParameter(line, "line");
|
||||
Intrinsics.checkNotNullParameter(observation, "observation");
|
||||
Intrinsics.checkNotNullParameter(trafficType, "trafficType");
|
||||
Intrinsics.checkNotNullParameter(opeProComPro, "opeProComPro");
|
||||
Intrinsics.checkNotNullParameter(compositionData, "compositionData");
|
||||
Intrinsics.checkNotNullParameter(announceableStations, "announceableStations");
|
||||
this.timestamp = j4;
|
||||
this.commercialPathKey = commercialPathKey;
|
||||
this.line = line;
|
||||
this.observation = observation;
|
||||
this.trafficType = trafficType;
|
||||
this.opeProComPro = opeProComPro;
|
||||
this.compositionData = compositionData;
|
||||
this.announceableStations = announceableStations;
|
||||
}
|
||||
|
||||
public static /* synthetic */ CommercialPathInfoDTO copy$default(CommercialPathInfoDTO commercialPathInfoDTO, long j4, ComercialPathKeyDTO comercialPathKeyDTO, String str, String str2, TrafficType trafficType, OpeProComProDTO opeProComProDTO, CompositionDataDTO compositionDataDTO, List list, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
j4 = commercialPathInfoDTO.timestamp;
|
||||
}
|
||||
long j5 = j4;
|
||||
if ((i & 2) != 0) {
|
||||
comercialPathKeyDTO = commercialPathInfoDTO.commercialPathKey;
|
||||
}
|
||||
ComercialPathKeyDTO comercialPathKeyDTO2 = comercialPathKeyDTO;
|
||||
if ((i & 4) != 0) {
|
||||
str = commercialPathInfoDTO.line;
|
||||
}
|
||||
String str3 = str;
|
||||
if ((i & 8) != 0) {
|
||||
str2 = commercialPathInfoDTO.observation;
|
||||
}
|
||||
return commercialPathInfoDTO.copy(j5, comercialPathKeyDTO2, str3, str2, (i & 16) != 0 ? commercialPathInfoDTO.trafficType : trafficType, (i & 32) != 0 ? commercialPathInfoDTO.opeProComPro : opeProComProDTO, (i & 64) != 0 ? commercialPathInfoDTO.compositionData : compositionDataDTO, (i & 128) != 0 ? commercialPathInfoDTO.announceableStations : list);
|
||||
}
|
||||
|
||||
/* renamed from: component1, reason: from getter */
|
||||
public final long getTimestamp() {
|
||||
return this.timestamp;
|
||||
}
|
||||
|
||||
/* renamed from: component2, reason: from getter */
|
||||
public final ComercialPathKeyDTO getCommercialPathKey() {
|
||||
return this.commercialPathKey;
|
||||
}
|
||||
|
||||
/* renamed from: component3, reason: from getter */
|
||||
public final String getLine() {
|
||||
return this.line;
|
||||
}
|
||||
|
||||
/* renamed from: component4, reason: from getter */
|
||||
public final String getObservation() {
|
||||
return this.observation;
|
||||
}
|
||||
|
||||
/* renamed from: component5, reason: from getter */
|
||||
public final TrafficType getTrafficType() {
|
||||
return this.trafficType;
|
||||
}
|
||||
|
||||
/* renamed from: component6, reason: from getter */
|
||||
public final OpeProComProDTO getOpeProComPro() {
|
||||
return this.opeProComPro;
|
||||
}
|
||||
|
||||
/* renamed from: component7, reason: from getter */
|
||||
public final CompositionDataDTO getCompositionData() {
|
||||
return this.compositionData;
|
||||
}
|
||||
|
||||
public final List<Integer> component8() {
|
||||
return this.announceableStations;
|
||||
}
|
||||
|
||||
public final CommercialPathInfoDTO copy(long timestamp, ComercialPathKeyDTO commercialPathKey, String line, String observation, TrafficType trafficType, OpeProComProDTO opeProComPro, CompositionDataDTO compositionData, List<Integer> announceableStations) {
|
||||
Intrinsics.checkNotNullParameter(commercialPathKey, "commercialPathKey");
|
||||
Intrinsics.checkNotNullParameter(line, "line");
|
||||
Intrinsics.checkNotNullParameter(observation, "observation");
|
||||
Intrinsics.checkNotNullParameter(trafficType, "trafficType");
|
||||
Intrinsics.checkNotNullParameter(opeProComPro, "opeProComPro");
|
||||
Intrinsics.checkNotNullParameter(compositionData, "compositionData");
|
||||
Intrinsics.checkNotNullParameter(announceableStations, "announceableStations");
|
||||
return new CommercialPathInfoDTO(timestamp, commercialPathKey, line, observation, trafficType, opeProComPro, compositionData, announceableStations);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof CommercialPathInfoDTO)) {
|
||||
return false;
|
||||
}
|
||||
CommercialPathInfoDTO commercialPathInfoDTO = (CommercialPathInfoDTO) other;
|
||||
return this.timestamp == commercialPathInfoDTO.timestamp && Intrinsics.areEqual(this.commercialPathKey, commercialPathInfoDTO.commercialPathKey) && Intrinsics.areEqual(this.line, commercialPathInfoDTO.line) && Intrinsics.areEqual(this.observation, commercialPathInfoDTO.observation) && this.trafficType == commercialPathInfoDTO.trafficType && Intrinsics.areEqual(this.opeProComPro, commercialPathInfoDTO.opeProComPro) && Intrinsics.areEqual(this.compositionData, commercialPathInfoDTO.compositionData) && Intrinsics.areEqual(this.announceableStations, commercialPathInfoDTO.announceableStations);
|
||||
}
|
||||
|
||||
public final List<Integer> getAnnounceableStations() {
|
||||
return this.announceableStations;
|
||||
}
|
||||
|
||||
public final ComercialPathKeyDTO getCommercialPathKey() {
|
||||
return this.commercialPathKey;
|
||||
}
|
||||
|
||||
public final CompositionDataDTO getCompositionData() {
|
||||
return this.compositionData;
|
||||
}
|
||||
|
||||
public final String getLine() {
|
||||
return this.line;
|
||||
}
|
||||
|
||||
public final String getObservation() {
|
||||
return this.observation;
|
||||
}
|
||||
|
||||
public final OpeProComProDTO getOpeProComPro() {
|
||||
return this.opeProComPro;
|
||||
}
|
||||
|
||||
public final long getTimestamp() {
|
||||
return this.timestamp;
|
||||
}
|
||||
|
||||
public final TrafficType getTrafficType() {
|
||||
return this.trafficType;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.announceableStations.hashCode() + ((this.compositionData.hashCode() + ((this.opeProComPro.hashCode() + ((this.trafficType.hashCode() + a.d(this.observation, a.d(this.line, (this.commercialPathKey.hashCode() + (Long.hashCode(this.timestamp) * 31)) * 31, 31), 31)) * 31)) * 31)) * 31);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("CommercialPathInfoDTO(timestamp=");
|
||||
sb.append(this.timestamp);
|
||||
sb.append(", commercialPathKey=");
|
||||
sb.append(this.commercialPathKey);
|
||||
sb.append(", line=");
|
||||
sb.append(this.line);
|
||||
sb.append(", observation=");
|
||||
sb.append(this.observation);
|
||||
sb.append(", trafficType=");
|
||||
sb.append(this.trafficType);
|
||||
sb.append(", opeProComPro=");
|
||||
sb.append(this.opeProComPro);
|
||||
sb.append(", compositionData=");
|
||||
sb.append(this.compositionData);
|
||||
sb.append(", announceableStations=");
|
||||
return a.o(sb, this.announceableStations, ')');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations;
|
||||
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005¢\u0006\u0002\u0010\u0006J\t\u0010\u000b\u001a\u00020\u0003HÆ\u0003J\t\u0010\f\u001a\u00020\u0005HÆ\u0003J\u001d\u0010\r\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0005HÆ\u0001J\u0013\u0010\u000e\u001a\u00020\u000f2\b\u0010\u0010\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0011\u001a\u00020\u0012HÖ\u0001J\t\u0010\u0013\u001a\u00020\u0014HÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0007\u0010\bR\u0011\u0010\u0004\u001a\u00020\u0005¢\u0006\b\n\u0000\u001a\u0004\b\t\u0010\n¨\u0006\u0015"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathStepSideInfoDTO;", "", "commercialPathInfo", "Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO;", "passthroughStep", "Lcom/adif/elcanomovil/serviceNetworking/circulations/PassthroughStepDTO;", "(Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO;Lcom/adif/elcanomovil/serviceNetworking/circulations/PassthroughStepDTO;)V", "getCommercialPathInfo", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathInfoDTO;", "getPassthroughStep", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/PassthroughStepDTO;", "component1", "component2", "copy", "equals", "", "other", "hashCode", "", "toString", "", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final /* data */ class CommercialPathStepSideInfoDTO {
|
||||
private final CommercialPathInfoDTO commercialPathInfo;
|
||||
private final PassthroughStepDTO passthroughStep;
|
||||
|
||||
public CommercialPathStepSideInfoDTO(CommercialPathInfoDTO commercialPathInfo, PassthroughStepDTO passthroughStep) {
|
||||
Intrinsics.checkNotNullParameter(commercialPathInfo, "commercialPathInfo");
|
||||
Intrinsics.checkNotNullParameter(passthroughStep, "passthroughStep");
|
||||
this.commercialPathInfo = commercialPathInfo;
|
||||
this.passthroughStep = passthroughStep;
|
||||
}
|
||||
|
||||
public static /* synthetic */ CommercialPathStepSideInfoDTO copy$default(CommercialPathStepSideInfoDTO commercialPathStepSideInfoDTO, CommercialPathInfoDTO commercialPathInfoDTO, PassthroughStepDTO passthroughStepDTO, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
commercialPathInfoDTO = commercialPathStepSideInfoDTO.commercialPathInfo;
|
||||
}
|
||||
if ((i & 2) != 0) {
|
||||
passthroughStepDTO = commercialPathStepSideInfoDTO.passthroughStep;
|
||||
}
|
||||
return commercialPathStepSideInfoDTO.copy(commercialPathInfoDTO, passthroughStepDTO);
|
||||
}
|
||||
|
||||
/* renamed from: component1, reason: from getter */
|
||||
public final CommercialPathInfoDTO getCommercialPathInfo() {
|
||||
return this.commercialPathInfo;
|
||||
}
|
||||
|
||||
/* renamed from: component2, reason: from getter */
|
||||
public final PassthroughStepDTO getPassthroughStep() {
|
||||
return this.passthroughStep;
|
||||
}
|
||||
|
||||
public final CommercialPathStepSideInfoDTO copy(CommercialPathInfoDTO commercialPathInfo, PassthroughStepDTO passthroughStep) {
|
||||
Intrinsics.checkNotNullParameter(commercialPathInfo, "commercialPathInfo");
|
||||
Intrinsics.checkNotNullParameter(passthroughStep, "passthroughStep");
|
||||
return new CommercialPathStepSideInfoDTO(commercialPathInfo, passthroughStep);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof CommercialPathStepSideInfoDTO)) {
|
||||
return false;
|
||||
}
|
||||
CommercialPathStepSideInfoDTO commercialPathStepSideInfoDTO = (CommercialPathStepSideInfoDTO) other;
|
||||
return Intrinsics.areEqual(this.commercialPathInfo, commercialPathStepSideInfoDTO.commercialPathInfo) && Intrinsics.areEqual(this.passthroughStep, commercialPathStepSideInfoDTO.passthroughStep);
|
||||
}
|
||||
|
||||
public final CommercialPathInfoDTO getCommercialPathInfo() {
|
||||
return this.commercialPathInfo;
|
||||
}
|
||||
|
||||
public final PassthroughStepDTO getPassthroughStep() {
|
||||
return this.passthroughStep;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.passthroughStep.hashCode() + (this.commercialPathInfo.hashCode() * 31);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "CommercialPathStepSideInfoDTO(commercialPathInfo=" + this.commercialPathInfo + ", passthroughStep=" + this.passthroughStep + ')';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations;
|
||||
|
||||
import com.google.android.gms.measurement.internal.a;
|
||||
import java.util.List;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u0013\u0012\f\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003¢\u0006\u0002\u0010\u0005J\u000f\u0010\b\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003HÆ\u0003J\u0019\u0010\t\u001a\u00020\u00002\u000e\b\u0002\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003HÆ\u0001J\u0013\u0010\n\u001a\u00020\u000b2\b\u0010\f\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\r\u001a\u00020\u000eHÖ\u0001J\t\u0010\u000f\u001a\u00020\u0010HÖ\u0001R\u0017\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0006\u0010\u0007¨\u0006\u0011"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathStepSideInfoResponseDTO;", "", "commercialPaths", "", "Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathStepSideInfoDTO;", "(Ljava/util/List;)V", "getCommercialPaths", "()Ljava/util/List;", "component1", "copy", "equals", "", "other", "hashCode", "", "toString", "", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final /* data */ class CommercialPathStepSideInfoResponseDTO {
|
||||
private final List<CommercialPathStepSideInfoDTO> commercialPaths;
|
||||
|
||||
public CommercialPathStepSideInfoResponseDTO(List<CommercialPathStepSideInfoDTO> commercialPaths) {
|
||||
Intrinsics.checkNotNullParameter(commercialPaths, "commercialPaths");
|
||||
this.commercialPaths = commercialPaths;
|
||||
}
|
||||
|
||||
/* JADX WARN: Multi-variable type inference failed */
|
||||
public static /* synthetic */ CommercialPathStepSideInfoResponseDTO copy$default(CommercialPathStepSideInfoResponseDTO commercialPathStepSideInfoResponseDTO, List list, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
list = commercialPathStepSideInfoResponseDTO.commercialPaths;
|
||||
}
|
||||
return commercialPathStepSideInfoResponseDTO.copy(list);
|
||||
}
|
||||
|
||||
public final List<CommercialPathStepSideInfoDTO> component1() {
|
||||
return this.commercialPaths;
|
||||
}
|
||||
|
||||
public final CommercialPathStepSideInfoResponseDTO copy(List<CommercialPathStepSideInfoDTO> commercialPaths) {
|
||||
Intrinsics.checkNotNullParameter(commercialPaths, "commercialPaths");
|
||||
return new CommercialPathStepSideInfoResponseDTO(commercialPaths);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
return (other instanceof CommercialPathStepSideInfoResponseDTO) && Intrinsics.areEqual(this.commercialPaths, ((CommercialPathStepSideInfoResponseDTO) other).commercialPaths);
|
||||
}
|
||||
|
||||
public final List<CommercialPathStepSideInfoDTO> getCommercialPaths() {
|
||||
return this.commercialPaths;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.commercialPaths.hashCode();
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return a.o(new StringBuilder("CommercialPathStepSideInfoResponseDTO(commercialPaths="), this.commercialPaths, ')');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations;
|
||||
|
||||
import com.google.android.gms.measurement.internal.a;
|
||||
import java.util.List;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u00000\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u001b\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\f\u0010\u0004\u001a\b\u0012\u0004\u0012\u00020\u00060\u0005¢\u0006\u0002\u0010\u0007J\t\u0010\f\u001a\u00020\u0003HÆ\u0003J\u000f\u0010\r\u001a\b\u0012\u0004\u0012\u00020\u00060\u0005HÆ\u0003J#\u0010\u000e\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\u000e\b\u0002\u0010\u0004\u001a\b\u0012\u0004\u0012\u00020\u00060\u0005HÆ\u0001J\u0013\u0010\u000f\u001a\u00020\u00102\b\u0010\u0011\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0012\u001a\u00020\u0013HÖ\u0001J\t\u0010\u0014\u001a\u00020\u0015HÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\b\u0010\tR\u0017\u0010\u0004\u001a\b\u0012\u0004\u0012\u00020\u00060\u0005¢\u0006\b\n\u0000\u001a\u0004\b\n\u0010\u000b¨\u0006\u0016"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathsInOnePathsDTO;", "", "commercialPathInfo", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathInfoDTO;", "passthroughSteps", "", "Lcom/adif/elcanomovil/serviceNetworking/circulations/PassthroughStepDTO;", "(Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathInfoDTO;Ljava/util/List;)V", "getCommercialPathInfo", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathInfoDTO;", "getPassthroughSteps", "()Ljava/util/List;", "component1", "component2", "copy", "equals", "", "other", "hashCode", "", "toString", "", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final /* data */ class CommercialPathsInOnePathsDTO {
|
||||
private final com.adif.elcanomovil.serviceNetworking.circulations.model.response.CommercialPathInfoDTO commercialPathInfo;
|
||||
private final List<PassthroughStepDTO> passthroughSteps;
|
||||
|
||||
public CommercialPathsInOnePathsDTO(com.adif.elcanomovil.serviceNetworking.circulations.model.response.CommercialPathInfoDTO commercialPathInfo, List<PassthroughStepDTO> passthroughSteps) {
|
||||
Intrinsics.checkNotNullParameter(commercialPathInfo, "commercialPathInfo");
|
||||
Intrinsics.checkNotNullParameter(passthroughSteps, "passthroughSteps");
|
||||
this.commercialPathInfo = commercialPathInfo;
|
||||
this.passthroughSteps = passthroughSteps;
|
||||
}
|
||||
|
||||
/* JADX WARN: Multi-variable type inference failed */
|
||||
public static /* synthetic */ CommercialPathsInOnePathsDTO copy$default(CommercialPathsInOnePathsDTO commercialPathsInOnePathsDTO, com.adif.elcanomovil.serviceNetworking.circulations.model.response.CommercialPathInfoDTO commercialPathInfoDTO, List list, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
commercialPathInfoDTO = commercialPathsInOnePathsDTO.commercialPathInfo;
|
||||
}
|
||||
if ((i & 2) != 0) {
|
||||
list = commercialPathsInOnePathsDTO.passthroughSteps;
|
||||
}
|
||||
return commercialPathsInOnePathsDTO.copy(commercialPathInfoDTO, list);
|
||||
}
|
||||
|
||||
/* renamed from: component1, reason: from getter */
|
||||
public final com.adif.elcanomovil.serviceNetworking.circulations.model.response.CommercialPathInfoDTO getCommercialPathInfo() {
|
||||
return this.commercialPathInfo;
|
||||
}
|
||||
|
||||
public final List<PassthroughStepDTO> component2() {
|
||||
return this.passthroughSteps;
|
||||
}
|
||||
|
||||
public final CommercialPathsInOnePathsDTO copy(com.adif.elcanomovil.serviceNetworking.circulations.model.response.CommercialPathInfoDTO commercialPathInfo, List<PassthroughStepDTO> passthroughSteps) {
|
||||
Intrinsics.checkNotNullParameter(commercialPathInfo, "commercialPathInfo");
|
||||
Intrinsics.checkNotNullParameter(passthroughSteps, "passthroughSteps");
|
||||
return new CommercialPathsInOnePathsDTO(commercialPathInfo, passthroughSteps);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof CommercialPathsInOnePathsDTO)) {
|
||||
return false;
|
||||
}
|
||||
CommercialPathsInOnePathsDTO commercialPathsInOnePathsDTO = (CommercialPathsInOnePathsDTO) other;
|
||||
return Intrinsics.areEqual(this.commercialPathInfo, commercialPathsInOnePathsDTO.commercialPathInfo) && Intrinsics.areEqual(this.passthroughSteps, commercialPathsInOnePathsDTO.passthroughSteps);
|
||||
}
|
||||
|
||||
public final com.adif.elcanomovil.serviceNetworking.circulations.model.response.CommercialPathInfoDTO getCommercialPathInfo() {
|
||||
return this.commercialPathInfo;
|
||||
}
|
||||
|
||||
public final List<PassthroughStepDTO> getPassthroughSteps() {
|
||||
return this.passthroughSteps;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.passthroughSteps.hashCode() + (this.commercialPathInfo.hashCode() * 31);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("CommercialPathsInOnePathsDTO(commercialPathInfo=");
|
||||
sb.append(this.commercialPathInfo);
|
||||
sb.append(", passthroughSteps=");
|
||||
return a.o(sb, this.passthroughSteps, ')');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations;
|
||||
|
||||
import com.google.android.gms.measurement.internal.a;
|
||||
import java.util.List;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u0013\u0012\f\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003¢\u0006\u0002\u0010\u0005J\u000f\u0010\b\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003HÆ\u0003J\u0019\u0010\t\u001a\u00020\u00002\u000e\b\u0002\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003HÆ\u0001J\u0013\u0010\n\u001a\u00020\u000b2\b\u0010\f\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\r\u001a\u00020\u000eHÖ\u0001J\t\u0010\u000f\u001a\u00020\u0010HÖ\u0001R\u0017\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0006\u0010\u0007¨\u0006\u0011"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/OneOrSeveralPathsResponseDTO;", "", "commercialPaths", "", "Lcom/adif/elcanomovil/serviceNetworking/circulations/CommercialPathsInOnePathsDTO;", "(Ljava/util/List;)V", "getCommercialPaths", "()Ljava/util/List;", "component1", "copy", "equals", "", "other", "hashCode", "", "toString", "", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final /* data */ class OneOrSeveralPathsResponseDTO {
|
||||
private final List<CommercialPathsInOnePathsDTO> commercialPaths;
|
||||
|
||||
public OneOrSeveralPathsResponseDTO(List<CommercialPathsInOnePathsDTO> commercialPaths) {
|
||||
Intrinsics.checkNotNullParameter(commercialPaths, "commercialPaths");
|
||||
this.commercialPaths = commercialPaths;
|
||||
}
|
||||
|
||||
/* JADX WARN: Multi-variable type inference failed */
|
||||
public static /* synthetic */ OneOrSeveralPathsResponseDTO copy$default(OneOrSeveralPathsResponseDTO oneOrSeveralPathsResponseDTO, List list, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
list = oneOrSeveralPathsResponseDTO.commercialPaths;
|
||||
}
|
||||
return oneOrSeveralPathsResponseDTO.copy(list);
|
||||
}
|
||||
|
||||
public final List<CommercialPathsInOnePathsDTO> component1() {
|
||||
return this.commercialPaths;
|
||||
}
|
||||
|
||||
public final OneOrSeveralPathsResponseDTO copy(List<CommercialPathsInOnePathsDTO> commercialPaths) {
|
||||
Intrinsics.checkNotNullParameter(commercialPaths, "commercialPaths");
|
||||
return new OneOrSeveralPathsResponseDTO(commercialPaths);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
return (other instanceof OneOrSeveralPathsResponseDTO) && Intrinsics.areEqual(this.commercialPaths, ((OneOrSeveralPathsResponseDTO) other).commercialPaths);
|
||||
}
|
||||
|
||||
public final List<CommercialPathsInOnePathsDTO> getCommercialPaths() {
|
||||
return this.commercialPaths;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.commercialPaths.hashCode();
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return a.o(new StringBuilder("OneOrSeveralPathsResponseDTO(commercialPaths="), this.commercialPaths, ')');
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,100 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations.model.request;
|
||||
|
||||
import C.w;
|
||||
import com.adif.elcanomovil.commonNavGraph.arguments.NavArguments;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.enums.EnumEntries;
|
||||
import kotlin.enums.EnumEntriesKt;
|
||||
|
||||
@Metadata(d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0018\u0002\n\u0002\b\u0005\bf\u0018\u00002\u00020\u0001:\u0002\f\rR\u0012\u0010\u0002\u001a\u00020\u0003X¦\u0004¢\u0006\u0006\u001a\u0004\b\u0004\u0010\u0005R\u0012\u0010\u0006\u001a\u00020\u0003X¦\u0004¢\u0006\u0006\u001a\u0004\b\u0007\u0010\u0005R\u0012\u0010\b\u001a\u00020\tX¦\u0004¢\u0006\u0006\u001a\u0004\b\n\u0010\u000b¨\u0006\u000e"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest;", "", NavArguments.ARG_DYNAMIC_LINKS_COMMERCIAL_SERVICE, "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest$State;", "getCommercialService", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest$State;", NavArguments.ARG_DYNAMIC_LINKS_COMMERCIAL_STOP_TYPE, "getCommercialStopType", "page", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest$PageInfoDTO;", "getPage", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest$PageInfoDTO;", "PageInfoDTO", "State", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public interface CirculationPathRequest {
|
||||
|
||||
@Metadata(d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\u0006\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003¢\u0006\u0002\u0010\u0004J\t\u0010\u0007\u001a\u00020\u0003HÆ\u0003J\u0013\u0010\b\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u0003HÆ\u0001J\u0013\u0010\t\u001a\u00020\n2\b\u0010\u000b\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\f\u001a\u00020\u0003HÖ\u0001J\t\u0010\r\u001a\u00020\u000eHÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0005\u0010\u0006¨\u0006\u000f"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest$PageInfoDTO;", "", "pageNumber", "", "(I)V", "getPageNumber", "()I", "component1", "copy", "equals", "", "other", "hashCode", "toString", "", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public static final /* data */ class PageInfoDTO {
|
||||
private final int pageNumber;
|
||||
|
||||
public PageInfoDTO(int i) {
|
||||
this.pageNumber = i;
|
||||
}
|
||||
|
||||
public static /* synthetic */ PageInfoDTO copy$default(PageInfoDTO pageInfoDTO, int i, int i4, Object obj) {
|
||||
if ((i4 & 1) != 0) {
|
||||
i = pageInfoDTO.pageNumber;
|
||||
}
|
||||
return pageInfoDTO.copy(i);
|
||||
}
|
||||
|
||||
/* renamed from: component1, reason: from getter */
|
||||
public final int getPageNumber() {
|
||||
return this.pageNumber;
|
||||
}
|
||||
|
||||
public final PageInfoDTO copy(int pageNumber) {
|
||||
return new PageInfoDTO(pageNumber);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
return (other instanceof PageInfoDTO) && this.pageNumber == ((PageInfoDTO) other).pageNumber;
|
||||
}
|
||||
|
||||
public final int getPageNumber() {
|
||||
return this.pageNumber;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return Integer.hashCode(this.pageNumber);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return w.p(new StringBuilder("PageInfoDTO(pageNumber="), this.pageNumber, ')');
|
||||
}
|
||||
}
|
||||
|
||||
/* JADX WARN: Failed to restore enum class, 'enum' modifier and super class removed */
|
||||
/* JADX WARN: Unknown enum class pattern. Please report as an issue! */
|
||||
@Metadata(d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0010\n\u0002\b\u0005\b\u0086\u0081\u0002\u0018\u00002\b\u0012\u0004\u0012\u00020\u00000\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0002j\u0002\b\u0003j\u0002\b\u0004j\u0002\b\u0005¨\u0006\u0006"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest$State;", "", "(Ljava/lang/String;I)V", "YES", "NOT", "BOTH", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public static final class State {
|
||||
private static final /* synthetic */ EnumEntries $ENTRIES;
|
||||
private static final /* synthetic */ State[] $VALUES;
|
||||
public static final State YES = new State("YES", 0);
|
||||
public static final State NOT = new State("NOT", 1);
|
||||
public static final State BOTH = new State("BOTH", 2);
|
||||
|
||||
private static final /* synthetic */ State[] $values() {
|
||||
return new State[]{YES, NOT, BOTH};
|
||||
}
|
||||
|
||||
static {
|
||||
State[] $values = $values();
|
||||
$VALUES = $values;
|
||||
$ENTRIES = EnumEntriesKt.enumEntries($values);
|
||||
}
|
||||
|
||||
private State(String str, int i) {
|
||||
}
|
||||
|
||||
public static EnumEntries<State> getEntries() {
|
||||
return $ENTRIES;
|
||||
}
|
||||
|
||||
public static State valueOf(String str) {
|
||||
return (State) Enum.valueOf(State.class, str);
|
||||
}
|
||||
|
||||
public static State[] values() {
|
||||
return (State[]) $VALUES.clone();
|
||||
}
|
||||
}
|
||||
|
||||
State getCommercialService();
|
||||
|
||||
State getCommercialStopType();
|
||||
|
||||
PageInfoDTO getPage();
|
||||
}
|
||||
@@ -0,0 +1,140 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations.model.request;
|
||||
|
||||
import com.adif.elcanomovil.commonNavGraph.arguments.NavArguments;
|
||||
import com.google.android.gms.measurement.internal.a;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.DefaultConstructorMarker;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0010\t\n\u0002\b\u0016\n\u0002\u0010\b\n\u0002\b\u0002\b\u0086\b\u0018\u00002\u00020\u0001BA\u0012\n\b\u0002\u0010\u0002\u001a\u0004\u0018\u00010\u0003\u0012\n\b\u0002\u0010\u0004\u001a\u0004\u0018\u00010\u0005\u0012\n\b\u0002\u0010\u0006\u001a\u0004\u0018\u00010\u0005\u0012\n\b\u0002\u0010\u0007\u001a\u0004\u0018\u00010\b\u0012\n\b\u0002\u0010\t\u001a\u0004\u0018\u00010\u0005¢\u0006\u0002\u0010\nJ\u0010\u0010\u0015\u001a\u0004\u0018\u00010\u0003HÆ\u0003¢\u0006\u0002\u0010\fJ\u000b\u0010\u0016\u001a\u0004\u0018\u00010\u0005HÆ\u0003J\u000b\u0010\u0017\u001a\u0004\u0018\u00010\u0005HÆ\u0003J\u0010\u0010\u0018\u001a\u0004\u0018\u00010\bHÆ\u0003¢\u0006\u0002\u0010\u0012J\u000b\u0010\u0019\u001a\u0004\u0018\u00010\u0005HÆ\u0003JJ\u0010\u001a\u001a\u00020\u00002\n\b\u0002\u0010\u0002\u001a\u0004\u0018\u00010\u00032\n\b\u0002\u0010\u0004\u001a\u0004\u0018\u00010\u00052\n\b\u0002\u0010\u0006\u001a\u0004\u0018\u00010\u00052\n\b\u0002\u0010\u0007\u001a\u0004\u0018\u00010\b2\n\b\u0002\u0010\t\u001a\u0004\u0018\u00010\u0005HÆ\u0001¢\u0006\u0002\u0010\u001bJ\u0013\u0010\u001c\u001a\u00020\u00032\b\u0010\u001d\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u001e\u001a\u00020\u001fHÖ\u0001J\t\u0010 \u001a\u00020\u0005HÖ\u0001R\u0015\u0010\u0002\u001a\u0004\u0018\u00010\u0003¢\u0006\n\n\u0002\u0010\r\u001a\u0004\b\u000b\u0010\fR\u0013\u0010\u0004\u001a\u0004\u0018\u00010\u0005¢\u0006\b\n\u0000\u001a\u0004\b\u000e\u0010\u000fR\u0013\u0010\u0006\u001a\u0004\u0018\u00010\u0005¢\u0006\b\n\u0000\u001a\u0004\b\u0010\u0010\u000fR\u0015\u0010\u0007\u001a\u0004\u0018\u00010\b¢\u0006\n\n\u0002\u0010\u0013\u001a\u0004\b\u0011\u0010\u0012R\u0013\u0010\t\u001a\u0004\u0018\u00010\u0005¢\u0006\b\n\u0000\u001a\u0004\b\u0014\u0010\u000f¨\u0006!"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/OneOrSeveralPathsRequest;", "", NavArguments.ARG_DYNAMIC_LINKS_COMMERCIAL_ALL_CONTROL_POINTS, "", NavArguments.ARG_DYNAMIC_LINKS_COMMERCIAL_NUMBER, "", NavArguments.ARG_DYNAMIC_LINKS_STATION_TO_CODE, NavArguments.ARG_DYNAMIC_LINKS_LAUNCHDATE, "", NavArguments.ARG_DYNAMIC_LINKS_STATION_CODE, "(Ljava/lang/Boolean;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Long;Ljava/lang/String;)V", "getAllControlPoints", "()Ljava/lang/Boolean;", "Ljava/lang/Boolean;", "getCommercialNumber", "()Ljava/lang/String;", "getDestinationStationCode", "getLaunchingDate", "()Ljava/lang/Long;", "Ljava/lang/Long;", "getOriginStationCode", "component1", "component2", "component3", "component4", "component5", "copy", "(Ljava/lang/Boolean;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Long;Ljava/lang/String;)Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/OneOrSeveralPathsRequest;", "equals", "other", "hashCode", "", "toString", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final /* data */ class OneOrSeveralPathsRequest {
|
||||
private final Boolean allControlPoints;
|
||||
private final String commercialNumber;
|
||||
private final String destinationStationCode;
|
||||
private final Long launchingDate;
|
||||
private final String originStationCode;
|
||||
|
||||
public OneOrSeveralPathsRequest() {
|
||||
this(null, null, null, null, null, 31, null);
|
||||
}
|
||||
|
||||
public static /* synthetic */ OneOrSeveralPathsRequest copy$default(OneOrSeveralPathsRequest oneOrSeveralPathsRequest, Boolean bool, String str, String str2, Long l4, String str3, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
bool = oneOrSeveralPathsRequest.allControlPoints;
|
||||
}
|
||||
if ((i & 2) != 0) {
|
||||
str = oneOrSeveralPathsRequest.commercialNumber;
|
||||
}
|
||||
if ((i & 4) != 0) {
|
||||
str2 = oneOrSeveralPathsRequest.destinationStationCode;
|
||||
}
|
||||
if ((i & 8) != 0) {
|
||||
l4 = oneOrSeveralPathsRequest.launchingDate;
|
||||
}
|
||||
if ((i & 16) != 0) {
|
||||
str3 = oneOrSeveralPathsRequest.originStationCode;
|
||||
}
|
||||
String str4 = str3;
|
||||
String str5 = str2;
|
||||
return oneOrSeveralPathsRequest.copy(bool, str, str5, l4, str4);
|
||||
}
|
||||
|
||||
/* renamed from: component1, reason: from getter */
|
||||
public final Boolean getAllControlPoints() {
|
||||
return this.allControlPoints;
|
||||
}
|
||||
|
||||
/* renamed from: component2, reason: from getter */
|
||||
public final String getCommercialNumber() {
|
||||
return this.commercialNumber;
|
||||
}
|
||||
|
||||
/* renamed from: component3, reason: from getter */
|
||||
public final String getDestinationStationCode() {
|
||||
return this.destinationStationCode;
|
||||
}
|
||||
|
||||
/* renamed from: component4, reason: from getter */
|
||||
public final Long getLaunchingDate() {
|
||||
return this.launchingDate;
|
||||
}
|
||||
|
||||
/* renamed from: component5, reason: from getter */
|
||||
public final String getOriginStationCode() {
|
||||
return this.originStationCode;
|
||||
}
|
||||
|
||||
public final OneOrSeveralPathsRequest copy(Boolean allControlPoints, String commercialNumber, String destinationStationCode, Long launchingDate, String originStationCode) {
|
||||
return new OneOrSeveralPathsRequest(allControlPoints, commercialNumber, destinationStationCode, launchingDate, originStationCode);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof OneOrSeveralPathsRequest)) {
|
||||
return false;
|
||||
}
|
||||
OneOrSeveralPathsRequest oneOrSeveralPathsRequest = (OneOrSeveralPathsRequest) other;
|
||||
return Intrinsics.areEqual(this.allControlPoints, oneOrSeveralPathsRequest.allControlPoints) && Intrinsics.areEqual(this.commercialNumber, oneOrSeveralPathsRequest.commercialNumber) && Intrinsics.areEqual(this.destinationStationCode, oneOrSeveralPathsRequest.destinationStationCode) && Intrinsics.areEqual(this.launchingDate, oneOrSeveralPathsRequest.launchingDate) && Intrinsics.areEqual(this.originStationCode, oneOrSeveralPathsRequest.originStationCode);
|
||||
}
|
||||
|
||||
public final Boolean getAllControlPoints() {
|
||||
return this.allControlPoints;
|
||||
}
|
||||
|
||||
public final String getCommercialNumber() {
|
||||
return this.commercialNumber;
|
||||
}
|
||||
|
||||
public final String getDestinationStationCode() {
|
||||
return this.destinationStationCode;
|
||||
}
|
||||
|
||||
public final Long getLaunchingDate() {
|
||||
return this.launchingDate;
|
||||
}
|
||||
|
||||
public final String getOriginStationCode() {
|
||||
return this.originStationCode;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
Boolean bool = this.allControlPoints;
|
||||
int hashCode = (bool == null ? 0 : bool.hashCode()) * 31;
|
||||
String str = this.commercialNumber;
|
||||
int hashCode2 = (hashCode + (str == null ? 0 : str.hashCode())) * 31;
|
||||
String str2 = this.destinationStationCode;
|
||||
int hashCode3 = (hashCode2 + (str2 == null ? 0 : str2.hashCode())) * 31;
|
||||
Long l4 = this.launchingDate;
|
||||
int hashCode4 = (hashCode3 + (l4 == null ? 0 : l4.hashCode())) * 31;
|
||||
String str3 = this.originStationCode;
|
||||
return hashCode4 + (str3 != null ? str3.hashCode() : 0);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("OneOrSeveralPathsRequest(allControlPoints=");
|
||||
sb.append(this.allControlPoints);
|
||||
sb.append(", commercialNumber=");
|
||||
sb.append(this.commercialNumber);
|
||||
sb.append(", destinationStationCode=");
|
||||
sb.append(this.destinationStationCode);
|
||||
sb.append(", launchingDate=");
|
||||
sb.append(this.launchingDate);
|
||||
sb.append(", originStationCode=");
|
||||
return a.n(sb, this.originStationCode, ')');
|
||||
}
|
||||
|
||||
public OneOrSeveralPathsRequest(Boolean bool, String str, String str2, Long l4, String str3) {
|
||||
this.allControlPoints = bool;
|
||||
this.commercialNumber = str;
|
||||
this.destinationStationCode = str2;
|
||||
this.launchingDate = l4;
|
||||
this.originStationCode = str3;
|
||||
}
|
||||
|
||||
public /* synthetic */ OneOrSeveralPathsRequest(Boolean bool, String str, String str2, Long l4, String str3, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
||||
this((i & 1) != 0 ? null : bool, (i & 2) != 0 ? null : str, (i & 4) != 0 ? null : str2, (i & 8) != 0 ? null : l4, (i & 16) != 0 ? null : str3);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,212 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations.model.request;
|
||||
|
||||
import com.adif.elcanomovil.commonNavGraph.arguments.NavArguments;
|
||||
import com.adif.elcanomovil.serviceNetworking.circulations.model.request.CirculationPathRequest;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u0000>\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0015\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\b\u0086\b\u0018\u00002\u00020\u0001BK\u0012\b\b\u0002\u0010\u0002\u001a\u00020\u0003\u0012\u0006\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\u0006\u0012\u0006\u0010\b\u001a\u00020\t\u0012\n\b\u0002\u0010\n\u001a\u0004\u0018\u00010\u0006\u0012\u0006\u0010\u000b\u001a\u00020\f¢\u0006\u0002\u0010\rJ\t\u0010\u0019\u001a\u00020\u0003HÆ\u0003J\t\u0010\u001a\u001a\u00020\u0003HÆ\u0003J\u000b\u0010\u001b\u001a\u0004\u0018\u00010\u0006HÆ\u0003J\u000b\u0010\u001c\u001a\u0004\u0018\u00010\u0006HÆ\u0003J\t\u0010\u001d\u001a\u00020\tHÆ\u0003J\u000b\u0010\u001e\u001a\u0004\u0018\u00010\u0006HÆ\u0003J\t\u0010\u001f\u001a\u00020\fHÆ\u0003JU\u0010 \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\u00062\b\b\u0002\u0010\b\u001a\u00020\t2\n\b\u0002\u0010\n\u001a\u0004\u0018\u00010\u00062\b\b\u0002\u0010\u000b\u001a\u00020\fHÆ\u0001J\u0013\u0010!\u001a\u00020\"2\b\u0010#\u001a\u0004\u0018\u00010$HÖ\u0003J\t\u0010%\u001a\u00020&HÖ\u0001J\t\u0010'\u001a\u00020\u0006HÖ\u0001R\u0014\u0010\u0002\u001a\u00020\u0003X\u0096\u0004¢\u0006\b\n\u0000\u001a\u0004\b\u000e\u0010\u000fR\u0014\u0010\u0004\u001a\u00020\u0003X\u0096\u0004¢\u0006\b\n\u0000\u001a\u0004\b\u0010\u0010\u000fR\u0013\u0010\u0005\u001a\u0004\u0018\u00010\u0006¢\u0006\b\n\u0000\u001a\u0004\b\u0011\u0010\u0012R\u0013\u0010\u0007\u001a\u0004\u0018\u00010\u0006¢\u0006\b\n\u0000\u001a\u0004\b\u0013\u0010\u0012R\u0014\u0010\b\u001a\u00020\tX\u0096\u0004¢\u0006\b\n\u0000\u001a\u0004\b\u0014\u0010\u0015R\u0013\u0010\n\u001a\u0004\u0018\u00010\u0006¢\u0006\b\n\u0000\u001a\u0004\b\u0016\u0010\u0012R\u0011\u0010\u000b\u001a\u00020\f¢\u0006\b\n\u0000\u001a\u0004\b\u0017\u0010\u0018¨\u0006("}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/TrafficCirculationPathRequest;", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest;", NavArguments.ARG_DYNAMIC_LINKS_COMMERCIAL_SERVICE, "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest$State;", NavArguments.ARG_DYNAMIC_LINKS_COMMERCIAL_STOP_TYPE, NavArguments.ARG_DYNAMIC_LINKS_STATION_TO_CODE, "", NavArguments.ARG_DYNAMIC_LINKS_STATION_CODE, "page", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest$PageInfoDTO;", "stationCode", NavArguments.ARG_DYNAMIC_LINKS_STATION_TRAFFIC, "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/TrafficType;", "(Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest$State;Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest$State;Ljava/lang/String;Ljava/lang/String;Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest$PageInfoDTO;Ljava/lang/String;Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/TrafficType;)V", "getCommercialService", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest$State;", "getCommercialStopType", "getDestinationStationCode", "()Ljava/lang/String;", "getOriginStationCode", "getPage", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/CirculationPathRequest$PageInfoDTO;", "getStationCode", "getTrafficType", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/TrafficType;", "component1", "component2", "component3", "component4", "component5", "component6", "component7", "copy", "equals", "", "other", "", "hashCode", "", "toString", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final /* data */ class TrafficCirculationPathRequest implements CirculationPathRequest {
|
||||
private final CirculationPathRequest.State commercialService;
|
||||
private final CirculationPathRequest.State commercialStopType;
|
||||
private final String destinationStationCode;
|
||||
private final String originStationCode;
|
||||
private final CirculationPathRequest.PageInfoDTO page;
|
||||
private final String stationCode;
|
||||
private final TrafficType trafficType;
|
||||
|
||||
public TrafficCirculationPathRequest(CirculationPathRequest.State commercialService, CirculationPathRequest.State commercialStopType, String str, String str2, CirculationPathRequest.PageInfoDTO page, String str3, TrafficType trafficType) {
|
||||
Intrinsics.checkNotNullParameter(commercialService, "commercialService");
|
||||
Intrinsics.checkNotNullParameter(commercialStopType, "commercialStopType");
|
||||
Intrinsics.checkNotNullParameter(page, "page");
|
||||
Intrinsics.checkNotNullParameter(trafficType, "trafficType");
|
||||
this.commercialService = commercialService;
|
||||
this.commercialStopType = commercialStopType;
|
||||
this.destinationStationCode = str;
|
||||
this.originStationCode = str2;
|
||||
this.page = page;
|
||||
this.stationCode = str3;
|
||||
this.trafficType = trafficType;
|
||||
}
|
||||
|
||||
public static /* synthetic */ TrafficCirculationPathRequest copy$default(TrafficCirculationPathRequest trafficCirculationPathRequest, CirculationPathRequest.State state, CirculationPathRequest.State state2, String str, String str2, CirculationPathRequest.PageInfoDTO pageInfoDTO, String str3, TrafficType trafficType, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
state = trafficCirculationPathRequest.commercialService;
|
||||
}
|
||||
if ((i & 2) != 0) {
|
||||
state2 = trafficCirculationPathRequest.commercialStopType;
|
||||
}
|
||||
if ((i & 4) != 0) {
|
||||
str = trafficCirculationPathRequest.destinationStationCode;
|
||||
}
|
||||
if ((i & 8) != 0) {
|
||||
str2 = trafficCirculationPathRequest.originStationCode;
|
||||
}
|
||||
if ((i & 16) != 0) {
|
||||
pageInfoDTO = trafficCirculationPathRequest.page;
|
||||
}
|
||||
if ((i & 32) != 0) {
|
||||
str3 = trafficCirculationPathRequest.stationCode;
|
||||
}
|
||||
if ((i & 64) != 0) {
|
||||
trafficType = trafficCirculationPathRequest.trafficType;
|
||||
}
|
||||
String str4 = str3;
|
||||
TrafficType trafficType2 = trafficType;
|
||||
CirculationPathRequest.PageInfoDTO pageInfoDTO2 = pageInfoDTO;
|
||||
String str5 = str;
|
||||
return trafficCirculationPathRequest.copy(state, state2, str5, str2, pageInfoDTO2, str4, trafficType2);
|
||||
}
|
||||
|
||||
/* renamed from: component1, reason: from getter */
|
||||
public final CirculationPathRequest.State getCommercialService() {
|
||||
return this.commercialService;
|
||||
}
|
||||
|
||||
/* renamed from: component2, reason: from getter */
|
||||
public final CirculationPathRequest.State getCommercialStopType() {
|
||||
return this.commercialStopType;
|
||||
}
|
||||
|
||||
/* renamed from: component3, reason: from getter */
|
||||
public final String getDestinationStationCode() {
|
||||
return this.destinationStationCode;
|
||||
}
|
||||
|
||||
/* renamed from: component4, reason: from getter */
|
||||
public final String getOriginStationCode() {
|
||||
return this.originStationCode;
|
||||
}
|
||||
|
||||
/* renamed from: component5, reason: from getter */
|
||||
public final CirculationPathRequest.PageInfoDTO getPage() {
|
||||
return this.page;
|
||||
}
|
||||
|
||||
/* renamed from: component6, reason: from getter */
|
||||
public final String getStationCode() {
|
||||
return this.stationCode;
|
||||
}
|
||||
|
||||
/* renamed from: component7, reason: from getter */
|
||||
public final TrafficType getTrafficType() {
|
||||
return this.trafficType;
|
||||
}
|
||||
|
||||
public final TrafficCirculationPathRequest copy(CirculationPathRequest.State commercialService, CirculationPathRequest.State commercialStopType, String destinationStationCode, String originStationCode, CirculationPathRequest.PageInfoDTO page, String stationCode, TrafficType trafficType) {
|
||||
Intrinsics.checkNotNullParameter(commercialService, "commercialService");
|
||||
Intrinsics.checkNotNullParameter(commercialStopType, "commercialStopType");
|
||||
Intrinsics.checkNotNullParameter(page, "page");
|
||||
Intrinsics.checkNotNullParameter(trafficType, "trafficType");
|
||||
return new TrafficCirculationPathRequest(commercialService, commercialStopType, destinationStationCode, originStationCode, page, stationCode, trafficType);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof TrafficCirculationPathRequest)) {
|
||||
return false;
|
||||
}
|
||||
TrafficCirculationPathRequest trafficCirculationPathRequest = (TrafficCirculationPathRequest) other;
|
||||
return this.commercialService == trafficCirculationPathRequest.commercialService && this.commercialStopType == trafficCirculationPathRequest.commercialStopType && Intrinsics.areEqual(this.destinationStationCode, trafficCirculationPathRequest.destinationStationCode) && Intrinsics.areEqual(this.originStationCode, trafficCirculationPathRequest.originStationCode) && Intrinsics.areEqual(this.page, trafficCirculationPathRequest.page) && Intrinsics.areEqual(this.stationCode, trafficCirculationPathRequest.stationCode) && this.trafficType == trafficCirculationPathRequest.trafficType;
|
||||
}
|
||||
|
||||
@Override // com.adif.elcanomovil.serviceNetworking.circulations.model.request.CirculationPathRequest
|
||||
public CirculationPathRequest.State getCommercialService() {
|
||||
return this.commercialService;
|
||||
}
|
||||
|
||||
@Override // com.adif.elcanomovil.serviceNetworking.circulations.model.request.CirculationPathRequest
|
||||
public CirculationPathRequest.State getCommercialStopType() {
|
||||
return this.commercialStopType;
|
||||
}
|
||||
|
||||
public final String getDestinationStationCode() {
|
||||
return this.destinationStationCode;
|
||||
}
|
||||
|
||||
public final String getOriginStationCode() {
|
||||
return this.originStationCode;
|
||||
}
|
||||
|
||||
@Override // com.adif.elcanomovil.serviceNetworking.circulations.model.request.CirculationPathRequest
|
||||
public CirculationPathRequest.PageInfoDTO getPage() {
|
||||
return this.page;
|
||||
}
|
||||
|
||||
public final String getStationCode() {
|
||||
return this.stationCode;
|
||||
}
|
||||
|
||||
public final TrafficType getTrafficType() {
|
||||
return this.trafficType;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
int hashCode = (this.commercialStopType.hashCode() + (this.commercialService.hashCode() * 31)) * 31;
|
||||
String str = this.destinationStationCode;
|
||||
int hashCode2 = (hashCode + (str == null ? 0 : str.hashCode())) * 31;
|
||||
String str2 = this.originStationCode;
|
||||
int hashCode3 = (this.page.hashCode() + ((hashCode2 + (str2 == null ? 0 : str2.hashCode())) * 31)) * 31;
|
||||
String str3 = this.stationCode;
|
||||
return this.trafficType.hashCode() + ((hashCode3 + (str3 != null ? str3.hashCode() : 0)) * 31);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "TrafficCirculationPathRequest(commercialService=" + this.commercialService + ", commercialStopType=" + this.commercialStopType + ", destinationStationCode=" + this.destinationStationCode + ", originStationCode=" + this.originStationCode + ", page=" + this.page + ", stationCode=" + this.stationCode + ", trafficType=" + this.trafficType + ')';
|
||||
}
|
||||
|
||||
/* JADX ERROR: NullPointerException in pass: InitCodeVariables
|
||||
java.lang.NullPointerException: Cannot invoke "jadx.core.dex.instructions.args.SSAVar.getPhiList()" because "resultVar" is null
|
||||
at jadx.core.dex.visitors.InitCodeVariables.collectConnectedVars(InitCodeVariables.java:119)
|
||||
at jadx.core.dex.visitors.InitCodeVariables.setCodeVar(InitCodeVariables.java:82)
|
||||
at jadx.core.dex.visitors.InitCodeVariables.initCodeVar(InitCodeVariables.java:74)
|
||||
at jadx.core.dex.visitors.InitCodeVariables.initCodeVars(InitCodeVariables.java:48)
|
||||
at jadx.core.dex.visitors.InitCodeVariables.visit(InitCodeVariables.java:29)
|
||||
*/
|
||||
public /* synthetic */ TrafficCirculationPathRequest(com.adif.elcanomovil.serviceNetworking.circulations.model.request.CirculationPathRequest.State r2, com.adif.elcanomovil.serviceNetworking.circulations.model.request.CirculationPathRequest.State r3, java.lang.String r4, java.lang.String r5, com.adif.elcanomovil.serviceNetworking.circulations.model.request.CirculationPathRequest.PageInfoDTO r6, java.lang.String r7, com.adif.elcanomovil.serviceNetworking.circulations.model.request.TrafficType r8, int r9, kotlin.jvm.internal.DefaultConstructorMarker r10) {
|
||||
/*
|
||||
r1 = this;
|
||||
r10 = r9 & 1
|
||||
if (r10 == 0) goto L6
|
||||
com.adif.elcanomovil.serviceNetworking.circulations.model.request.CirculationPathRequest$State r2 = com.adif.elcanomovil.serviceNetworking.circulations.model.request.CirculationPathRequest.State.YES
|
||||
L6:
|
||||
r10 = r9 & 4
|
||||
r0 = 0
|
||||
if (r10 == 0) goto Lc
|
||||
r4 = r0
|
||||
Lc:
|
||||
r10 = r9 & 8
|
||||
if (r10 == 0) goto L11
|
||||
r5 = r0
|
||||
L11:
|
||||
r9 = r9 & 32
|
||||
if (r9 == 0) goto L1e
|
||||
r9 = r0
|
||||
r7 = r5
|
||||
r10 = r8
|
||||
r5 = r3
|
||||
r8 = r6
|
||||
r3 = r1
|
||||
r6 = r4
|
||||
L1c:
|
||||
r4 = r2
|
||||
goto L26
|
||||
L1e:
|
||||
r9 = r7
|
||||
r10 = r8
|
||||
r7 = r5
|
||||
r8 = r6
|
||||
r5 = r3
|
||||
r6 = r4
|
||||
r3 = r1
|
||||
goto L1c
|
||||
L26:
|
||||
r3.<init>(r4, r5, r6, r7, r8, r9, r10)
|
||||
return
|
||||
*/
|
||||
throw new UnsupportedOperationException("Method not decompiled: com.adif.elcanomovil.serviceNetworking.circulations.model.request.TrafficCirculationPathRequest.<init>(com.adif.elcanomovil.serviceNetworking.circulations.model.request.CirculationPathRequest$State, com.adif.elcanomovil.serviceNetworking.circulations.model.request.CirculationPathRequest$State, java.lang.String, java.lang.String, com.adif.elcanomovil.serviceNetworking.circulations.model.request.CirculationPathRequest$PageInfoDTO, java.lang.String, com.adif.elcanomovil.serviceNetworking.circulations.model.request.TrafficType, int, kotlin.jvm.internal.DefaultConstructorMarker):void");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations.model.request;
|
||||
|
||||
import com.adif.elcanomovil.uiStations.mappers.RequestedStationInfoMapperKt;
|
||||
import com.adif.elcanomovil.uiTrain.entities.TrainInfoMapperKt;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.enums.EnumEntries;
|
||||
import kotlin.enums.EnumEntriesKt;
|
||||
|
||||
/* JADX WARN: Failed to restore enum class, 'enum' modifier and super class removed */
|
||||
/* JADX WARN: Unknown enum class pattern. Please report as an issue! */
|
||||
@Metadata(d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0010\n\u0002\b\b\b\u0086\u0081\u0002\u0018\u00002\b\u0012\u0004\u0012\u00020\u00000\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0002j\u0002\b\u0003j\u0002\b\u0004j\u0002\b\u0005j\u0002\b\u0006j\u0002\b\u0007j\u0002\b\b¨\u0006\t"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/model/request/TrafficType;", "", "(Ljava/lang/String;I)V", TrainInfoMapperKt.CERCANIAS, "AVLDMD", RequestedStationInfoMapperKt.OTHERS, "TRAVELERS", "GOODS", "ALL", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final class TrafficType {
|
||||
private static final /* synthetic */ EnumEntries $ENTRIES;
|
||||
private static final /* synthetic */ TrafficType[] $VALUES;
|
||||
public static final TrafficType CERCANIAS = new TrafficType(TrainInfoMapperKt.CERCANIAS, 0);
|
||||
public static final TrafficType AVLDMD = new TrafficType("AVLDMD", 1);
|
||||
public static final TrafficType OTHERS = new TrafficType(RequestedStationInfoMapperKt.OTHERS, 2);
|
||||
public static final TrafficType TRAVELERS = new TrafficType("TRAVELERS", 3);
|
||||
public static final TrafficType GOODS = new TrafficType("GOODS", 4);
|
||||
public static final TrafficType ALL = new TrafficType("ALL", 5);
|
||||
|
||||
private static final /* synthetic */ TrafficType[] $values() {
|
||||
return new TrafficType[]{CERCANIAS, AVLDMD, OTHERS, TRAVELERS, GOODS, ALL};
|
||||
}
|
||||
|
||||
static {
|
||||
TrafficType[] $values = $values();
|
||||
$VALUES = $values;
|
||||
$ENTRIES = EnumEntriesKt.enumEntries($values);
|
||||
}
|
||||
|
||||
private TrafficType(String str, int i) {
|
||||
}
|
||||
|
||||
public static EnumEntries<TrafficType> getEntries() {
|
||||
return $ENTRIES;
|
||||
}
|
||||
|
||||
public static TrafficType valueOf(String str) {
|
||||
return (TrafficType) Enum.valueOf(TrafficType.class, str);
|
||||
}
|
||||
|
||||
public static TrafficType[] values() {
|
||||
return (TrafficType[]) $VALUES.clone();
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,53 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations.model.response;
|
||||
|
||||
import com.google.android.gms.measurement.internal.a;
|
||||
import java.util.List;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u0013\u0012\f\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003¢\u0006\u0002\u0010\u0005J\u000f\u0010\b\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003HÆ\u0003J\u0019\u0010\t\u001a\u00020\u00002\u000e\b\u0002\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003HÆ\u0001J\u0013\u0010\n\u001a\u00020\u000b2\b\u0010\f\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\r\u001a\u00020\u000eHÖ\u0001J\t\u0010\u000f\u001a\u00020\u0010HÖ\u0001R\u0017\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0006\u0010\u0007¨\u0006\u0011"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathRouteInfoResponse;", "", "commercialPaths", "", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathRouteSidesInfoDTO;", "(Ljava/util/List;)V", "getCommercialPaths", "()Ljava/util/List;", "component1", "copy", "equals", "", "other", "hashCode", "", "toString", "", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final /* data */ class CommercialPathRouteInfoResponse {
|
||||
private final List<CommercialPathRouteSidesInfoDTO> commercialPaths;
|
||||
|
||||
public CommercialPathRouteInfoResponse(List<CommercialPathRouteSidesInfoDTO> commercialPaths) {
|
||||
Intrinsics.checkNotNullParameter(commercialPaths, "commercialPaths");
|
||||
this.commercialPaths = commercialPaths;
|
||||
}
|
||||
|
||||
/* JADX WARN: Multi-variable type inference failed */
|
||||
public static /* synthetic */ CommercialPathRouteInfoResponse copy$default(CommercialPathRouteInfoResponse commercialPathRouteInfoResponse, List list, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
list = commercialPathRouteInfoResponse.commercialPaths;
|
||||
}
|
||||
return commercialPathRouteInfoResponse.copy(list);
|
||||
}
|
||||
|
||||
public final List<CommercialPathRouteSidesInfoDTO> component1() {
|
||||
return this.commercialPaths;
|
||||
}
|
||||
|
||||
public final CommercialPathRouteInfoResponse copy(List<CommercialPathRouteSidesInfoDTO> commercialPaths) {
|
||||
Intrinsics.checkNotNullParameter(commercialPaths, "commercialPaths");
|
||||
return new CommercialPathRouteInfoResponse(commercialPaths);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
return (other instanceof CommercialPathRouteInfoResponse) && Intrinsics.areEqual(this.commercialPaths, ((CommercialPathRouteInfoResponse) other).commercialPaths);
|
||||
}
|
||||
|
||||
public final List<CommercialPathRouteSidesInfoDTO> getCommercialPaths() {
|
||||
return this.commercialPaths;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.commercialPaths.hashCode();
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return a.o(new StringBuilder("CommercialPathRouteInfoResponse(commercialPaths="), this.commercialPaths, ')');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations.model.response;
|
||||
|
||||
import com.google.android.gms.measurement.internal.a;
|
||||
import java.util.List;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u00000\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u001b\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\f\u0010\u0004\u001a\b\u0012\u0004\u0012\u00020\u00060\u0005¢\u0006\u0002\u0010\u0007J\t\u0010\f\u001a\u00020\u0003HÆ\u0003J\u000f\u0010\r\u001a\b\u0012\u0004\u0012\u00020\u00060\u0005HÆ\u0003J#\u0010\u000e\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\u000e\b\u0002\u0010\u0004\u001a\b\u0012\u0004\u0012\u00020\u00060\u0005HÆ\u0001J\u0013\u0010\u000f\u001a\u00020\u00102\b\u0010\u0011\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0012\u001a\u00020\u0013HÖ\u0001J\t\u0010\u0014\u001a\u00020\u0015HÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\b\u0010\tR\u0017\u0010\u0004\u001a\b\u0012\u0004\u0012\u00020\u00060\u0005¢\u0006\b\n\u0000\u001a\u0004\b\n\u0010\u000b¨\u0006\u0016"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathRouteSidesInfoDTO;", "", "commercialPathInfo", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathInfoDTO;", "passthroughSteps", "", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/PassthroughDetailsStepDTO;", "(Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathInfoDTO;Ljava/util/List;)V", "getCommercialPathInfo", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathInfoDTO;", "getPassthroughSteps", "()Ljava/util/List;", "component1", "component2", "copy", "equals", "", "other", "hashCode", "", "toString", "", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final /* data */ class CommercialPathRouteSidesInfoDTO {
|
||||
private final CommercialPathInfoDTO commercialPathInfo;
|
||||
private final List<PassthroughDetailsStepDTO> passthroughSteps;
|
||||
|
||||
public CommercialPathRouteSidesInfoDTO(CommercialPathInfoDTO commercialPathInfo, List<PassthroughDetailsStepDTO> passthroughSteps) {
|
||||
Intrinsics.checkNotNullParameter(commercialPathInfo, "commercialPathInfo");
|
||||
Intrinsics.checkNotNullParameter(passthroughSteps, "passthroughSteps");
|
||||
this.commercialPathInfo = commercialPathInfo;
|
||||
this.passthroughSteps = passthroughSteps;
|
||||
}
|
||||
|
||||
/* JADX WARN: Multi-variable type inference failed */
|
||||
public static /* synthetic */ CommercialPathRouteSidesInfoDTO copy$default(CommercialPathRouteSidesInfoDTO commercialPathRouteSidesInfoDTO, CommercialPathInfoDTO commercialPathInfoDTO, List list, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
commercialPathInfoDTO = commercialPathRouteSidesInfoDTO.commercialPathInfo;
|
||||
}
|
||||
if ((i & 2) != 0) {
|
||||
list = commercialPathRouteSidesInfoDTO.passthroughSteps;
|
||||
}
|
||||
return commercialPathRouteSidesInfoDTO.copy(commercialPathInfoDTO, list);
|
||||
}
|
||||
|
||||
/* renamed from: component1, reason: from getter */
|
||||
public final CommercialPathInfoDTO getCommercialPathInfo() {
|
||||
return this.commercialPathInfo;
|
||||
}
|
||||
|
||||
public final List<PassthroughDetailsStepDTO> component2() {
|
||||
return this.passthroughSteps;
|
||||
}
|
||||
|
||||
public final CommercialPathRouteSidesInfoDTO copy(CommercialPathInfoDTO commercialPathInfo, List<PassthroughDetailsStepDTO> passthroughSteps) {
|
||||
Intrinsics.checkNotNullParameter(commercialPathInfo, "commercialPathInfo");
|
||||
Intrinsics.checkNotNullParameter(passthroughSteps, "passthroughSteps");
|
||||
return new CommercialPathRouteSidesInfoDTO(commercialPathInfo, passthroughSteps);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof CommercialPathRouteSidesInfoDTO)) {
|
||||
return false;
|
||||
}
|
||||
CommercialPathRouteSidesInfoDTO commercialPathRouteSidesInfoDTO = (CommercialPathRouteSidesInfoDTO) other;
|
||||
return Intrinsics.areEqual(this.commercialPathInfo, commercialPathRouteSidesInfoDTO.commercialPathInfo) && Intrinsics.areEqual(this.passthroughSteps, commercialPathRouteSidesInfoDTO.passthroughSteps);
|
||||
}
|
||||
|
||||
public final CommercialPathInfoDTO getCommercialPathInfo() {
|
||||
return this.commercialPathInfo;
|
||||
}
|
||||
|
||||
public final List<PassthroughDetailsStepDTO> getPassthroughSteps() {
|
||||
return this.passthroughSteps;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.passthroughSteps.hashCode() + (this.commercialPathInfo.hashCode() * 31);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("CommercialPathRouteSidesInfoDTO(commercialPathInfo=");
|
||||
sb.append(this.commercialPathInfo);
|
||||
sb.append(", passthroughSteps=");
|
||||
return a.o(sb, this.passthroughSteps, ')');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations.model.response;
|
||||
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005¢\u0006\u0002\u0010\u0006J\t\u0010\u000b\u001a\u00020\u0003HÆ\u0003J\t\u0010\f\u001a\u00020\u0005HÆ\u0003J\u001d\u0010\r\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0005HÆ\u0001J\u0013\u0010\u000e\u001a\u00020\u000f2\b\u0010\u0010\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0011\u001a\u00020\u0012HÖ\u0001J\t\u0010\u0013\u001a\u00020\u0014HÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0007\u0010\bR\u0011\u0010\u0004\u001a\u00020\u0005¢\u0006\b\n\u0000\u001a\u0004\b\t\u0010\n¨\u0006\u0015"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathStepSideInfoDTO;", "", "commercialPathInfo", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathInfoDTO;", "passthroughStep", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/PassthroughStepDTO;", "(Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathInfoDTO;Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/PassthroughStepDTO;)V", "getCommercialPathInfo", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathInfoDTO;", "getPassthroughStep", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/PassthroughStepDTO;", "component1", "component2", "copy", "equals", "", "other", "hashCode", "", "toString", "", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final /* data */ class CommercialPathStepSideInfoDTO {
|
||||
private final CommercialPathInfoDTO commercialPathInfo;
|
||||
private final PassthroughStepDTO passthroughStep;
|
||||
|
||||
public CommercialPathStepSideInfoDTO(CommercialPathInfoDTO commercialPathInfo, PassthroughStepDTO passthroughStep) {
|
||||
Intrinsics.checkNotNullParameter(commercialPathInfo, "commercialPathInfo");
|
||||
Intrinsics.checkNotNullParameter(passthroughStep, "passthroughStep");
|
||||
this.commercialPathInfo = commercialPathInfo;
|
||||
this.passthroughStep = passthroughStep;
|
||||
}
|
||||
|
||||
public static /* synthetic */ CommercialPathStepSideInfoDTO copy$default(CommercialPathStepSideInfoDTO commercialPathStepSideInfoDTO, CommercialPathInfoDTO commercialPathInfoDTO, PassthroughStepDTO passthroughStepDTO, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
commercialPathInfoDTO = commercialPathStepSideInfoDTO.commercialPathInfo;
|
||||
}
|
||||
if ((i & 2) != 0) {
|
||||
passthroughStepDTO = commercialPathStepSideInfoDTO.passthroughStep;
|
||||
}
|
||||
return commercialPathStepSideInfoDTO.copy(commercialPathInfoDTO, passthroughStepDTO);
|
||||
}
|
||||
|
||||
/* renamed from: component1, reason: from getter */
|
||||
public final CommercialPathInfoDTO getCommercialPathInfo() {
|
||||
return this.commercialPathInfo;
|
||||
}
|
||||
|
||||
/* renamed from: component2, reason: from getter */
|
||||
public final PassthroughStepDTO getPassthroughStep() {
|
||||
return this.passthroughStep;
|
||||
}
|
||||
|
||||
public final CommercialPathStepSideInfoDTO copy(CommercialPathInfoDTO commercialPathInfo, PassthroughStepDTO passthroughStep) {
|
||||
Intrinsics.checkNotNullParameter(commercialPathInfo, "commercialPathInfo");
|
||||
Intrinsics.checkNotNullParameter(passthroughStep, "passthroughStep");
|
||||
return new CommercialPathStepSideInfoDTO(commercialPathInfo, passthroughStep);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof CommercialPathStepSideInfoDTO)) {
|
||||
return false;
|
||||
}
|
||||
CommercialPathStepSideInfoDTO commercialPathStepSideInfoDTO = (CommercialPathStepSideInfoDTO) other;
|
||||
return Intrinsics.areEqual(this.commercialPathInfo, commercialPathStepSideInfoDTO.commercialPathInfo) && Intrinsics.areEqual(this.passthroughStep, commercialPathStepSideInfoDTO.passthroughStep);
|
||||
}
|
||||
|
||||
public final CommercialPathInfoDTO getCommercialPathInfo() {
|
||||
return this.commercialPathInfo;
|
||||
}
|
||||
|
||||
public final PassthroughStepDTO getPassthroughStep() {
|
||||
return this.passthroughStep;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.passthroughStep.hashCode() + (this.commercialPathInfo.hashCode() * 31);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "CommercialPathStepSideInfoDTO(commercialPathInfo=" + this.commercialPathInfo + ", passthroughStep=" + this.passthroughStep + ')';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations.model.response;
|
||||
|
||||
import com.google.android.gms.measurement.internal.a;
|
||||
import java.util.List;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u0013\u0012\f\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003¢\u0006\u0002\u0010\u0005J\u000f\u0010\b\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003HÆ\u0003J\u0019\u0010\t\u001a\u00020\u00002\u000e\b\u0002\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003HÆ\u0001J\u0013\u0010\n\u001a\u00020\u000b2\b\u0010\f\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\r\u001a\u00020\u000eHÖ\u0001J\t\u0010\u000f\u001a\u00020\u0010HÖ\u0001R\u0017\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0006\u0010\u0007¨\u0006\u0011"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathStepSideInfoResponse;", "", "commercialPaths", "", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathStepSideInfoDTO;", "(Ljava/util/List;)V", "getCommercialPaths", "()Ljava/util/List;", "component1", "copy", "equals", "", "other", "hashCode", "", "toString", "", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final /* data */ class CommercialPathStepSideInfoResponse {
|
||||
private final List<CommercialPathStepSideInfoDTO> commercialPaths;
|
||||
|
||||
public CommercialPathStepSideInfoResponse(List<CommercialPathStepSideInfoDTO> commercialPaths) {
|
||||
Intrinsics.checkNotNullParameter(commercialPaths, "commercialPaths");
|
||||
this.commercialPaths = commercialPaths;
|
||||
}
|
||||
|
||||
/* JADX WARN: Multi-variable type inference failed */
|
||||
public static /* synthetic */ CommercialPathStepSideInfoResponse copy$default(CommercialPathStepSideInfoResponse commercialPathStepSideInfoResponse, List list, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
list = commercialPathStepSideInfoResponse.commercialPaths;
|
||||
}
|
||||
return commercialPathStepSideInfoResponse.copy(list);
|
||||
}
|
||||
|
||||
public final List<CommercialPathStepSideInfoDTO> component1() {
|
||||
return this.commercialPaths;
|
||||
}
|
||||
|
||||
public final CommercialPathStepSideInfoResponse copy(List<CommercialPathStepSideInfoDTO> commercialPaths) {
|
||||
Intrinsics.checkNotNullParameter(commercialPaths, "commercialPaths");
|
||||
return new CommercialPathStepSideInfoResponse(commercialPaths);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
return (other instanceof CommercialPathStepSideInfoResponse) && Intrinsics.areEqual(this.commercialPaths, ((CommercialPathStepSideInfoResponse) other).commercialPaths);
|
||||
}
|
||||
|
||||
public final List<CommercialPathStepSideInfoDTO> getCommercialPaths() {
|
||||
return this.commercialPaths;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.commercialPaths.hashCode();
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return a.o(new StringBuilder("CommercialPathStepSideInfoResponse(commercialPaths="), this.commercialPaths, ')');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations.model.response;
|
||||
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u0000,\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u0015\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005¢\u0006\u0002\u0010\u0006J\t\u0010\u000b\u001a\u00020\u0003HÆ\u0003J\t\u0010\f\u001a\u00020\u0005HÆ\u0003J\u001d\u0010\r\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0005HÆ\u0001J\u0013\u0010\u000e\u001a\u00020\u000f2\b\u0010\u0010\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0011\u001a\u00020\u0012HÖ\u0001J\t\u0010\u0013\u001a\u00020\u0014HÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0007\u0010\bR\u0011\u0010\u0004\u001a\u00020\u0005¢\u0006\b\n\u0000\u001a\u0004\b\t\u0010\n¨\u0006\u0015"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialRouteInfoDTO;", "", "commercialPathInfo", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathInfoDTO;", "passthroughStep", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/RouteStepDTO;", "(Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathInfoDTO;Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/RouteStepDTO;)V", "getCommercialPathInfo", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialPathInfoDTO;", "getPassthroughStep", "()Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/RouteStepDTO;", "component1", "component2", "copy", "equals", "", "other", "hashCode", "", "toString", "", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final /* data */ class CommercialRouteInfoDTO {
|
||||
private final CommercialPathInfoDTO commercialPathInfo;
|
||||
private final RouteStepDTO passthroughStep;
|
||||
|
||||
public CommercialRouteInfoDTO(CommercialPathInfoDTO commercialPathInfo, RouteStepDTO passthroughStep) {
|
||||
Intrinsics.checkNotNullParameter(commercialPathInfo, "commercialPathInfo");
|
||||
Intrinsics.checkNotNullParameter(passthroughStep, "passthroughStep");
|
||||
this.commercialPathInfo = commercialPathInfo;
|
||||
this.passthroughStep = passthroughStep;
|
||||
}
|
||||
|
||||
public static /* synthetic */ CommercialRouteInfoDTO copy$default(CommercialRouteInfoDTO commercialRouteInfoDTO, CommercialPathInfoDTO commercialPathInfoDTO, RouteStepDTO routeStepDTO, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
commercialPathInfoDTO = commercialRouteInfoDTO.commercialPathInfo;
|
||||
}
|
||||
if ((i & 2) != 0) {
|
||||
routeStepDTO = commercialRouteInfoDTO.passthroughStep;
|
||||
}
|
||||
return commercialRouteInfoDTO.copy(commercialPathInfoDTO, routeStepDTO);
|
||||
}
|
||||
|
||||
/* renamed from: component1, reason: from getter */
|
||||
public final CommercialPathInfoDTO getCommercialPathInfo() {
|
||||
return this.commercialPathInfo;
|
||||
}
|
||||
|
||||
/* renamed from: component2, reason: from getter */
|
||||
public final RouteStepDTO getPassthroughStep() {
|
||||
return this.passthroughStep;
|
||||
}
|
||||
|
||||
public final CommercialRouteInfoDTO copy(CommercialPathInfoDTO commercialPathInfo, RouteStepDTO passthroughStep) {
|
||||
Intrinsics.checkNotNullParameter(commercialPathInfo, "commercialPathInfo");
|
||||
Intrinsics.checkNotNullParameter(passthroughStep, "passthroughStep");
|
||||
return new CommercialRouteInfoDTO(commercialPathInfo, passthroughStep);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof CommercialRouteInfoDTO)) {
|
||||
return false;
|
||||
}
|
||||
CommercialRouteInfoDTO commercialRouteInfoDTO = (CommercialRouteInfoDTO) other;
|
||||
return Intrinsics.areEqual(this.commercialPathInfo, commercialRouteInfoDTO.commercialPathInfo) && Intrinsics.areEqual(this.passthroughStep, commercialRouteInfoDTO.passthroughStep);
|
||||
}
|
||||
|
||||
public final CommercialPathInfoDTO getCommercialPathInfo() {
|
||||
return this.commercialPathInfo;
|
||||
}
|
||||
|
||||
public final RouteStepDTO getPassthroughStep() {
|
||||
return this.passthroughStep;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.passthroughStep.hashCode() + (this.commercialPathInfo.hashCode() * 31);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "CommercialRouteInfoDTO(commercialPathInfo=" + this.commercialPathInfo + ", passthroughStep=" + this.passthroughStep + ')';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations.model.response;
|
||||
|
||||
import com.google.android.gms.measurement.internal.a;
|
||||
import java.util.List;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u0000*\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0002\b\u0006\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u0013\u0012\f\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003¢\u0006\u0002\u0010\u0005J\u000f\u0010\b\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003HÆ\u0003J\u0019\u0010\t\u001a\u00020\u00002\u000e\b\u0002\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003HÆ\u0001J\u0013\u0010\n\u001a\u00020\u000b2\b\u0010\f\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\r\u001a\u00020\u000eHÖ\u0001J\t\u0010\u000f\u001a\u00020\u0010HÖ\u0001R\u0017\u0010\u0002\u001a\b\u0012\u0004\u0012\u00020\u00040\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0006\u0010\u0007¨\u0006\u0011"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialRouteInfoResponse;", "", "commercialPaths", "", "Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/CommercialRouteInfoDTO;", "(Ljava/util/List;)V", "getCommercialPaths", "()Ljava/util/List;", "component1", "copy", "equals", "", "other", "hashCode", "", "toString", "", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final /* data */ class CommercialRouteInfoResponse {
|
||||
private final List<CommercialRouteInfoDTO> commercialPaths;
|
||||
|
||||
public CommercialRouteInfoResponse(List<CommercialRouteInfoDTO> commercialPaths) {
|
||||
Intrinsics.checkNotNullParameter(commercialPaths, "commercialPaths");
|
||||
this.commercialPaths = commercialPaths;
|
||||
}
|
||||
|
||||
/* JADX WARN: Multi-variable type inference failed */
|
||||
public static /* synthetic */ CommercialRouteInfoResponse copy$default(CommercialRouteInfoResponse commercialRouteInfoResponse, List list, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
list = commercialRouteInfoResponse.commercialPaths;
|
||||
}
|
||||
return commercialRouteInfoResponse.copy(list);
|
||||
}
|
||||
|
||||
public final List<CommercialRouteInfoDTO> component1() {
|
||||
return this.commercialPaths;
|
||||
}
|
||||
|
||||
public final CommercialRouteInfoResponse copy(List<CommercialRouteInfoDTO> commercialPaths) {
|
||||
Intrinsics.checkNotNullParameter(commercialPaths, "commercialPaths");
|
||||
return new CommercialRouteInfoResponse(commercialPaths);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
return (other instanceof CommercialRouteInfoResponse) && Intrinsics.areEqual(this.commercialPaths, ((CommercialRouteInfoResponse) other).commercialPaths);
|
||||
}
|
||||
|
||||
public final List<CommercialRouteInfoDTO> getCommercialPaths() {
|
||||
return this.commercialPaths;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.commercialPaths.hashCode();
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return a.o(new StringBuilder("CommercialRouteInfoResponse(commercialPaths="), this.commercialPaths, ')');
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,46 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations.model.response;
|
||||
|
||||
import com.adif.elcanomovil.uiTrain.entities.TrainInfoMapperKt;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.enums.EnumEntries;
|
||||
import kotlin.enums.EnumEntriesKt;
|
||||
|
||||
/* JADX WARN: Failed to restore enum class, 'enum' modifier and super class removed */
|
||||
/* JADX WARN: Unknown enum class pattern. Please report as an issue! */
|
||||
@Metadata(d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0010\n\u0002\b\b\b\u0086\u0081\u0002\u0018\u00002\b\u0012\u0004\u0012\u00020\u00000\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0002j\u0002\b\u0003j\u0002\b\u0004j\u0002\b\u0005j\u0002\b\u0006j\u0002\b\u0007j\u0002\b\b¨\u0006\t"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/TrafficType;", "", "(Ljava/lang/String;I)V", TrainInfoMapperKt.CERCANIAS, "AVLDMD", "OTHER", "TRAVELERS", "GOODS", "ALL", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final class TrafficType {
|
||||
private static final /* synthetic */ EnumEntries $ENTRIES;
|
||||
private static final /* synthetic */ TrafficType[] $VALUES;
|
||||
public static final TrafficType CERCANIAS = new TrafficType(TrainInfoMapperKt.CERCANIAS, 0);
|
||||
public static final TrafficType AVLDMD = new TrafficType("AVLDMD", 1);
|
||||
public static final TrafficType OTHER = new TrafficType("OTHER", 2);
|
||||
public static final TrafficType TRAVELERS = new TrafficType("TRAVELERS", 3);
|
||||
public static final TrafficType GOODS = new TrafficType("GOODS", 4);
|
||||
public static final TrafficType ALL = new TrafficType("ALL", 5);
|
||||
|
||||
private static final /* synthetic */ TrafficType[] $values() {
|
||||
return new TrafficType[]{CERCANIAS, AVLDMD, OTHER, TRAVELERS, GOODS, ALL};
|
||||
}
|
||||
|
||||
static {
|
||||
TrafficType[] $values = $values();
|
||||
$VALUES = $values;
|
||||
$ENTRIES = EnumEntriesKt.enumEntries($values);
|
||||
}
|
||||
|
||||
private TrafficType(String str, int i) {
|
||||
}
|
||||
|
||||
public static EnumEntries<TrafficType> getEntries() {
|
||||
return $ENTRIES;
|
||||
}
|
||||
|
||||
public static TrafficType valueOf(String str) {
|
||||
return (TrafficType) Enum.valueOf(TrafficType.class, str);
|
||||
}
|
||||
|
||||
public static TrafficType[] values() {
|
||||
return (TrafficType[]) $VALUES.clone();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
package com.adif.elcanomovil.serviceNetworking.circulations.model.response;
|
||||
|
||||
import C.w;
|
||||
import kotlin.Metadata;
|
||||
|
||||
@Metadata(d1 = {"\u0000\u001e\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000b\n\u0002\b\u000e\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\u001d\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003¢\u0006\u0002\u0010\u0006J\t\u0010\u000b\u001a\u00020\u0003HÆ\u0003J\t\u0010\f\u001a\u00020\u0003HÆ\u0003J\t\u0010\r\u001a\u00020\u0003HÆ\u0003J'\u0010\u000e\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00032\b\b\u0002\u0010\u0005\u001a\u00020\u0003HÆ\u0001J\u0013\u0010\u000f\u001a\u00020\u00032\b\u0010\u0010\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0011\u001a\u00020\u0012HÖ\u0001J\t\u0010\u0013\u001a\u00020\u0014HÖ\u0001R\u0011\u0010\u0004\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0007\u0010\bR\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\t\u0010\bR\u0011\u0010\u0005\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\n\u0010\b¨\u0006\u0015"}, d2 = {"Lcom/adif/elcanomovil/serviceNetworking/circulations/model/response/VisualEffectsDTO;", "", "inmediateDeparture", "", "countDown", "showDelay", "(ZZZ)V", "getCountDown", "()Z", "getInmediateDeparture", "getShowDelay", "component1", "component2", "component3", "copy", "equals", "other", "hashCode", "", "toString", "", "service-networking_proNon_corporateRelease"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes.dex */
|
||||
public final /* data */ class VisualEffectsDTO {
|
||||
private final boolean countDown;
|
||||
private final boolean inmediateDeparture;
|
||||
private final boolean showDelay;
|
||||
|
||||
public VisualEffectsDTO(boolean z3, boolean z4, boolean z5) {
|
||||
this.inmediateDeparture = z3;
|
||||
this.countDown = z4;
|
||||
this.showDelay = z5;
|
||||
}
|
||||
|
||||
public static /* synthetic */ VisualEffectsDTO copy$default(VisualEffectsDTO visualEffectsDTO, boolean z3, boolean z4, boolean z5, int i, Object obj) {
|
||||
if ((i & 1) != 0) {
|
||||
z3 = visualEffectsDTO.inmediateDeparture;
|
||||
}
|
||||
if ((i & 2) != 0) {
|
||||
z4 = visualEffectsDTO.countDown;
|
||||
}
|
||||
if ((i & 4) != 0) {
|
||||
z5 = visualEffectsDTO.showDelay;
|
||||
}
|
||||
return visualEffectsDTO.copy(z3, z4, z5);
|
||||
}
|
||||
|
||||
/* renamed from: component1, reason: from getter */
|
||||
public final boolean getInmediateDeparture() {
|
||||
return this.inmediateDeparture;
|
||||
}
|
||||
|
||||
/* renamed from: component2, reason: from getter */
|
||||
public final boolean getCountDown() {
|
||||
return this.countDown;
|
||||
}
|
||||
|
||||
/* renamed from: component3, reason: from getter */
|
||||
public final boolean getShowDelay() {
|
||||
return this.showDelay;
|
||||
}
|
||||
|
||||
public final VisualEffectsDTO copy(boolean inmediateDeparture, boolean countDown, boolean showDelay) {
|
||||
return new VisualEffectsDTO(inmediateDeparture, countDown, showDelay);
|
||||
}
|
||||
|
||||
public boolean equals(Object other) {
|
||||
if (this == other) {
|
||||
return true;
|
||||
}
|
||||
if (!(other instanceof VisualEffectsDTO)) {
|
||||
return false;
|
||||
}
|
||||
VisualEffectsDTO visualEffectsDTO = (VisualEffectsDTO) other;
|
||||
return this.inmediateDeparture == visualEffectsDTO.inmediateDeparture && this.countDown == visualEffectsDTO.countDown && this.showDelay == visualEffectsDTO.showDelay;
|
||||
}
|
||||
|
||||
public final boolean getCountDown() {
|
||||
return this.countDown;
|
||||
}
|
||||
|
||||
public final boolean getInmediateDeparture() {
|
||||
return this.inmediateDeparture;
|
||||
}
|
||||
|
||||
public final boolean getShowDelay() {
|
||||
return this.showDelay;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return Boolean.hashCode(this.showDelay) + w.c(Boolean.hashCode(this.inmediateDeparture) * 31, 31, this.countDown);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "VisualEffectsDTO(inmediateDeparture=" + this.inmediateDeparture + ", countDown=" + this.countDown + ", showDelay=" + this.showDelay + ')';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user