You are here

public function GetSmtpDetails::__construct in SendinBlue 7.2

GetSmtpDetails constructor.

Parameters

string $userName:

string $relay:

int $port:

bool $enabled:

File

includes/Model/GetSmtpDetails.php, line 30

Class

GetSmtpDetails

Code

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