package com.google.firebase.firestore.model.mutation; import com.google.firebase.firestore.model.SnapshotVersion; import com.google.firebase.firestore.util.Preconditions; import java.util.List; import o.sbb; /* loaded from: classes2.dex */ public final class MutationResult { private final List transformResults; private final SnapshotVersion version; public MutationResult(SnapshotVersion snapshotVersion, List list) { this.version = (SnapshotVersion) Preconditions.checkNotNull(snapshotVersion); this.transformResults = list; } public final SnapshotVersion getVersion() { return this.version; } public final List getTransformResults() { return this.transformResults; } }