collapsed = $collapsed;
}
/**
* @return bool
*/
public function getCollapsed()
{
return $this->collapsed;
}
/**
* @param ExtendedValue
*/
public function setValue(ExtendedValue $value)
{
$this->value = $value;
}
/**
* @return ExtendedValue
*/
public function getValue()
{
return $this->value;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(PivotGroupValueMetadata::class, 'Google_Service_Sheets_PivotGroupValueMetadata');