PluginProbe
Parse.ly / 3.14.1
Parse.ly v3.14.1
3.24.1 3.24.0 3.23.7 3.23.6 3.23.5 3.23.4 3.23.3 3.16.0 3.16.1 3.16.2 3.16.3 3.16.4 3.17.0 3.18.0 3.18.1 3.19.0 3.19.1 3.19.2 3.19.3 3.2.0 3.2.1 3.20.0 3.20.1 3.20.2 3.20.3 All 105 releases
wp-parsely / src / RemoteAPI / content-suggestions / class-link-suggestion.php

class-link-suggestion.php in Parse.ly 3.14.1, at src/RemoteAPI/content-suggestions/class-link-suggestion.php

49 lines 785 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Link Suggestion class
4 *
5 * @package Parsely
6 * @since 3.14.0
7 */
8
9 declare(strict_types=1);
10
11 namespace Parsely\RemoteAPI\ContentSuggestions;
12
13 /**
14 * Link Suggestion class
15 *
16 * Represents a link suggestion returned by the Suggest Links API.
17 *
18 * @since 3.14.0
19 */
20 class Link_Suggestion {
21 /**
22 * The URL of the suggested link.
23 *
24 * @var string The URL of the suggested link.
25 */
26 public $href;
27
28 /**
29 * The title of the suggested link.
30 *
31 * @var string The title of the suggested link.
32 */
33 public $title;
34
35 /**
36 * The text of the suggested link.
37 *
38 * @var string The text of the suggested link.
39 */
40 public $text;
41
42 /**
43 * The offset/position for the suggested link.
44 *
45 * @var int The offset/position for the suggested link.
46 */
47 public $offset;
48 }
49