Google_SubscriptionsListResponse
The WordPress Core Google SubscriptionsListResponse class.
Defined (1)
The class is defined in the following location(s).
- /google-api-php-client/src/contrib/Google_MirrorService.php
- class Google_SubscriptionsListResponse extends Google_Model {
- protected $__itemsType = 'Google_Subscription';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public function setItems(/** array(Google_Subscription) */ $items) {
- $this->assertIsArray($items, 'Google_Subscription', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- }