package com.google.firebase.firestore.remote; import com.airbnb.deeplinkdispatch.UrlTreeKt; import com.google.firebase.firestore.model.DocumentKey; import com.google.firebase.firestore.model.MutableDocument; import com.google.firebase.firestore.model.SnapshotVersion; import java.util.Map; import java.util.Set; /* loaded from: classes2.dex */ public final class RemoteEvent { private final Map documentUpdates; private final Set resolvedLimboDocuments; private final SnapshotVersion snapshotVersion; private final Map targetChanges; private final Set targetMismatches; public RemoteEvent(SnapshotVersion snapshotVersion, Map map, Set set, Map map2, Set set2) { this.snapshotVersion = snapshotVersion; this.targetChanges = map; this.targetMismatches = set; this.documentUpdates = map2; this.resolvedLimboDocuments = set2; } public final String toString() { StringBuilder sb = new StringBuilder("RemoteEvent{snapshotVersion="); sb.append(this.snapshotVersion); sb.append(", targetChanges="); sb.append(this.targetChanges); sb.append(", targetMismatches="); sb.append(this.targetMismatches); sb.append(", documentUpdates="); sb.append(this.documentUpdates); sb.append(", resolvedLimboDocuments="); sb.append(this.resolvedLimboDocuments); sb.append(UrlTreeKt.componentParamSuffixChar); return sb.toString(); } public final Set getTargetMismatches() { return this.targetMismatches; } public final Map getTargetChanges() { return this.targetChanges; } public final SnapshotVersion getSnapshotVersion() { return this.snapshotVersion; } public final Set getResolvedLimboDocuments() { return this.resolvedLimboDocuments; } public final Map getDocumentUpdates() { return this.documentUpdates; } }