class GetAttributesEnumeration in SendinBlue 7.2
Hierarchy
- class \GetAttributesEnumeration
Expanded class hierarchy of GetAttributesEnumeration
File
- includes/
Model/ GetAttributesEnumeration.php, line 6
View source
class GetAttributesEnumeration {
/**
* @var int*/
public $value;
/**
* @var string*/
public $label;
/**
* GetAttributesEnumeration constructor.
*
* @param int $value
*/
public function __construct($data = []) {
$this->value = $data['value'];
$this->label = $data['label'];
}
/**
* @return int
*/
public function getValue() {
return $this->value;
}
/**
* @param int $value
*/
public function setValue($value) {
$this->value = $value;
}
/**
* @return string
*/
public function getLabel() {
return $this->label;
}
/**
* @param string $label
*/
public function setLabel($label) {
$this->label = $label;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
GetAttributesEnumeration:: |
public | property | @var string | |
GetAttributesEnumeration:: |
public | property | @var int | |
GetAttributesEnumeration:: |
public | function | ||
GetAttributesEnumeration:: |
public | function | ||
GetAttributesEnumeration:: |
public | function | ||
GetAttributesEnumeration:: |
public | function | ||
GetAttributesEnumeration:: |
public | function | GetAttributesEnumeration constructor. |