namespace Yoast\WP\SEO\Models;
* Table definition for the SEO Links table.
* @property int $target_post_id
* @property int $indexable_id
* @property int $target_indexable_id
* @property string $language
* @property string $region
class SEO_Links extends Model {
* Indicates that the link is external.
const TYPE_INTERNAL = 'internal';
* Indicates that the link is internal.
const TYPE_EXTERNAL = 'external';
* Indicates the link is an internal image.
const TYPE_INTERNAL_IMAGE = 'image-in';
* Indicates the link is an external image.
const TYPE_EXTERNAL_IMAGE = 'image-ex';
* Holds the parsed URL. May not be set.
* Which columns contain int values.
protected $int_columns = [