Class Attribute
Definition of an attribute which is a key-value pair.
Inherited Members
Namespace: Oci.ApmtracesService.Models
Assembly: OCI.DotNetSDK.Apmtraces.dll
Syntax
public class Attribute
Properties
AttributeName
Declaration
[Required(ErrorMessage = "AttributeName is required.")]
[JsonProperty(PropertyName = "attributeName")]
public string AttributeName { get; set; }
Property Value
Type | Description |
---|---|
string | Key that specifies the attribute name. |
Remarks
Required
AttributeValue
Declaration
[Required(ErrorMessage = "AttributeValue is required.")]
[JsonProperty(PropertyName = "attributeValue")]
public string AttributeValue { get; set; }
Property Value
Type | Description |
---|---|
string | Value associated with the attribute key. |
Remarks
Required