public sealed class Struct : object, IMessage<Struct>, IEquatable<Struct>, IDeepCloneable<Struct>, IBufferMessage, IMessage
Struct represents a structured data value, consisting of fields
which map to dynamically typed values. In some languages, Struct
might be supported by a native representation. For example, in
scripting languages like JS a struct is represented as an
object. The details of that representation are described together
with the proto support for the language.
The JSON representation for Struct is JSON object.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[[["`Struct` is a class within the `Google.Protobuf.WellKnownTypes` namespace that represents a structured data value with dynamically typed fields."],["The `Struct` class supports various interfaces including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, ensuring compatibility with different operations and functionalities."],["`Struct` can be constructed with a default constructor, or by passing another `Struct` as a parameter."],["The `Fields` property within `Struct` is a map of string keys to `Value` objects, allowing for flexible data storage and retrieval."],["`Struct` uses a JSON object for its JSON representation, and it provides methods for cloning, merging, calculating size, and comparing instances."]]],[]]