Google_StyleFunction
The WordPress Core Google StyleFunction class.
Defined (1)
The class is defined in the following location(s).
- /google-api-php-client/src/contrib/Google_FusiontablesService.php
- class Google_StyleFunction extends Google_Model {
- protected $__bucketsType = 'Google_Bucket';
- protected $__bucketsDataType = 'array';
- public $buckets;
- public $columnName;
- protected $__gradientType = 'Google_StyleFunctionGradient';
- protected $__gradientDataType = '';
- public $gradient;
- public $kind;
- public function setBuckets(/** array(Google_Bucket) */ $buckets) {
- $this->assertIsArray($buckets, 'Google_Bucket', __METHOD__);
- $this->buckets = $buckets;
- }
- public function getBuckets() {
- return $this->buckets;
- }
- public function setColumnName( $columnName) {
- $this->columnName = $columnName;
- }
- public function getColumnName() {
- return $this->columnName;
- }
- public function setGradient(Google_StyleFunctionGradient $gradient) {
- $this->gradient = $gradient;
- }
- public function getGradient() {
- return $this->gradient;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- }