GetSmtpDetails.php in SendinBlue 7.2
File
includes/Model/GetSmtpDetails.php
View source
<?php
class GetSmtpDetails {
public $userName;
public $relay;
public $port;
private $enabled;
public function __construct($userName, $relay, $port, $enabled) {
$this->userName = $userName;
$this->relay = $relay;
$this->port = $port;
$this->enabled = $enabled;
}
public function getUserName() {
return $this->userName;
}
public function setUserName($userName) {
$this->userName = $userName;
}
public function getRelay() {
return $this->relay;
}
public function setRelay($relay) {
$this->relay = $relay;
}
public function getPort() {
return $this->port;
}
public function setPort($port) {
$this->port = $port;
}
public function isEnabled() {
return $this->enabled;
}
public function setEnabled($enabled) {
$this->enabled = $enabled;
}
}