public sealed class Struct : 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"]],[["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-04-17 UTC."],[[["`Struct` in Google.Protobuf represents structured data with dynamically typed values, often mapped to native language objects like JavaScript objects."],["The JSON representation of `Struct` is a JSON object, aligning with common data interchange formats."],["`Struct` implements multiple interfaces including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, offering extensive functionalities."],["The `Fields` property in `Struct` is an unordered map that holds string keys and dynamically typed values."],["`Struct` offers methods like `Clone`, `Equals`, `MergeFrom`, and `WriteTo` to manage and manipulate the data it holds."]]],[]]