Mailgun\Resource\Api\Domain\Domain::__construct PHP Метод

__construct() приватный Метод

private __construct ( string $name, string $smtpLogin, $smtpPassword, boolean $wildcard, string $spamAction, string $state, DateTime $createdAt )
$name string
$smtpLogin string
$wildcard boolean
$spamAction string
$state string
$createdAt DateTime
    private function __construct($name, $smtpLogin, $smtpPassword, $wildcard, $spamAction, $state, \DateTime $createdAt)
    {
        $this->name = $name;
        $this->smtpLogin = $smtpLogin;
        $this->smtpPassword = $smtpPassword;
        $this->wildcard = $wildcard;
        $this->spamAction = $spamAction;
        $this->state = $state;
        $this->createdAt = $createdAt;
    }