You are here

public function GetSmtpDetails::__construct in SendinBlue 8

Same name and namespace in other branches
  1. 8.2 src/Tools/Model/GetSmtpDetails.php \Drupal\sendinblue\Tools\Model\GetSmtpDetails::__construct()

GetSmtpDetails constructor.

Parameters

string $userName:

string $relay:

int $port:

bool $enabled:

File

src/Tools/Model/GetSmtpDetails.php, line 31

Class

GetSmtpDetails

Namespace

Drupal\sendinblue\Tools\Model

Code

public function __construct(string $userName, string $relay, int $port, bool $enabled) {
  $this->userName = $userName;
  $this->relay = $relay;
  $this->port = $port;
  $this->enabled = $enabled;
}