Show / Hide Table of Contents

Class PivotGroupValueMetadata

Metadata about a value in a pivot grouping.

Inheritance
System.Object
PivotGroupValueMetadata
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class PivotGroupValueMetadata : IDirectResponseSchema

Properties

Collapsed

True if the data corresponding to the value is collapsed.

Declaration
[JsonProperty("collapsed")]
public virtual bool? Collapsed { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Value

The calculated value the metadata corresponds to. (Note that formulaValue is not valid, because the values will be calculated.)

Declaration
[JsonProperty("value")]
public virtual ExtendedValue Value { get; set; }
Property Value
Type Description
ExtendedValue

Implements

IDirectResponseSchema
In This Article
Back to top