Mailgun\Resource\Api\Domain\CredentialResponse::__construct PHP Method

__construct() private method

private __construct ( integer $totalCount, array $items )
$totalCount integer
$items array
    private function __construct($totalCount, array $items)
    {
        Assert::integer($totalCount);
        Assert::isArray($items);
        Assert::allIsInstanceOf($items, 'Mailgun\\Resource\\Api\\Domain\\CredentialResponseItem');
        $this->totalCount = $totalCount;
        $this->items = $items;
    }