Google_SavedAdStyle
The WordPress Core Google SavedAdStyle class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_AdsenseService.php
- class Google_SavedAdStyle extends Google_Model {
- protected $__adStyleType = 'Google_AdStyle';
- protected $__adStyleDataType = '';
- public $adStyle;
- public $id;
- public $kind;
- public $name;
- public function setAdStyle(Google_AdStyle $adStyle) {
- $this->adStyle = $adStyle;
- }
- public function getAdStyle() {
- return $this->adStyle;
- }
- public function setId( $id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setName( $name) {
- $this->name = $name;
- }
- public function getName() {
- return $this->name;
- }
- }