url = $data['url']; return $this; } public function toArray(): array { return [ 'url' => $this->url ]; } public function getUrl(): string { return $this->url; } /** * @deprecated Unsupported * @return string */ public function getCaption(): string { trigger_error( 'Captions are not supported in this API, this will error at server level.', E_USER_DEPRECATED ); return $this->caption; } }