<?php

namespace App\Service;

final class StatResponse
{
    private $domain;
    private $symbol;
    private $value;

    /**
     * StatResponse constructor.
     *
     * @param string $domain
     * @param string $symbol
     * @param int    $value
     */
    public function __construct(string $domain, string $symbol, int $value)
    {
        $this->symbol = $symbol;
        $this->domain = $domain;
        $this->value = $value;
    }

    /**
     * @return mixed
     */
    public function getDomain()
    {
        return $this->domain;
    }

    /**
     * @return mixed
     */
    public function getSymbol()
    {
        return $this->symbol;
    }

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