<?php

namespace App\Message;

final class LandingPageBacklinksMessage
{
    /**
     * @var int
     */
    private $landingPageId;
    /**
     * @var string
     */
    private $value;

    public function __construct(int $landingPageId, string $value)
    {
        $this->landingPageId = $landingPageId;
        $this->value = $value;
    }

    /**
     * @return int
     */
    public function getLandingPageId(): int
    {
        return $this->landingPageId;
    }

    /**
     * @return string
     */
    public function getValue(): string
    {
        return $this->value;
    }
}
