public sealed class Attributes : IMessage<Span.Types.Attributes>, IEquatable<Span.Types.Attributes>, IDeepCloneable<Span.Types.Attributes>, IBufferMessage, IMessage
A set of attributes, each in the format [KEY]:[VALUE].
public MapField<string, AttributeValue> AttributeMap { get; }
The set of attributes. Each attribute's key can be up to 128 bytes
long. The value can be a string up to 256 bytes, a signed 64-bit integer,
or the Boolean values true and false. For example:
The number of attributes that were discarded. Attributes can be discarded
because their keys are too long or because there are too many attributes.
If this value is 0 then all attributes are valid.
[[["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-06-10 UTC."],[[["The content describes the `Attributes` class within the `Google.Cloud.Trace.V2` namespace, which is used to represent a set of attributes in the format of `[KEY]:[VALUE]`."],["This `Attributes` class implements several interfaces, including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, indicating its capabilities for serialization, comparison, cloning, and buffer management."],["The class offers two constructors: a default constructor, and one that allows for the initialization of `Attributes` based on another `Attributes` object."],["Key properties of `Attributes` include `AttributeMap`, which is a `MapField` storing attribute key-value pairs, and `DroppedAttributesCount`, which tracks the number of discarded attributes."],["The provided versions of the `Google.Cloud.Trace.V2` range from 2.2.0 up to 3.6.0, with 3.6.0 being the latest version available."]]],[]]