"AccessKey", ]; /** * @var string */ public $accessKey; protected $attributeType = RichsnippetsDataObjectAttribute::class; protected $attributeDataType = 'array'; /** * @var string */ public $source; /** * @var string */ public $type; /** * @param string */ public function setAccessKey($accessKey) { $this->accessKey = $accessKey; } /** * @return string */ public function getAccessKey() { return $this->accessKey; } /** * @param RichsnippetsDataObjectAttribute[] */ public function setAttribute($attribute) { $this->attribute = $attribute; } /** * @return RichsnippetsDataObjectAttribute[] */ public function getAttribute() { return $this->attribute; } /** * @param string */ public function setSource($source) { $this->source = $source; } /** * @return string */ public function getSource() { return $this->source; } /** * @param string */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RichsnippetsDataObject::class, 'Google_Service_Contentwarehouse_RichsnippetsDataObject');