Google_StyleFunctionGradient
The Google Pagespeed Insights Google StyleFunctionGradient class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_FusiontablesService.php
- class Google_StyleFunctionGradient extends Google_Model {
- protected $__colorsType = 'Google_StyleFunctionGradientColors';
- protected $__colorsDataType = 'array';
- public $colors;
- public $max;
- public $min;
- public function setColors(/** array(Google_StyleFunctionGradientColors) */ $colors) {
- $this->assertIsArray($colors, 'Google_StyleFunctionGradientColors', __METHOD__);
- $this->colors = $colors;
- }
- public function getColors() {
- return $this->colors;
- }
- public function setMax($max) {
- $this->max = $max;
- }
- public function getMax() {
- return $this->max;
- }
- public function setMin($min) {
- $this->min = $min;
- }
- public function getMin() {
- return $this->min;
- }
- }