public sealed class Entry : IMessage<MutateRowsRequest.Types.Entry>, IEquatable<MutateRowsRequest.Types.Entry>, IDeepCloneable<MutateRowsRequest.Types.Entry>, IBufferMessage, IMessage
Required. Changes to be atomically applied to the specified row. Mutations are
applied in order, meaning that earlier mutations can be masked by
later ones.
You must specify at least one mutation.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["The webpage details the `Entry` class within `MutateRowsRequest.Types`, a component of the Google Cloud Bigtable V2 .NET library, specifically for managing row mutations."],["This `Entry` class represents a mutation to be applied to a specific row and is available in various versions, from 2.2.0 up to the latest 3.17.0, each having their own corresponding documentation link."],["The `Entry` class inherits from `Object` and implements interfaces like `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, providing functionalities such as message handling, equality checks, deep cloning, and buffer message support."],["The `Entry` class has two constructors: a default one and another which takes an `Entry` object as an argument, and it also contains properties named `Mutations`, a required field for changes applied atomically to the specified row, and `RowKey`, which specifies the row key for the operation."],["The `Mutations` property is a `RepeatedField` of type `Mutation`, allowing for multiple changes, and `RowKey` is of type `ByteString`, which represents the key of the row being modified."]]],[]]