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