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