GetAttributesEnumeration.php in SendinBlue 7.2
File
includes/Model/GetAttributesEnumeration.php
View source
<?php
class GetAttributesEnumeration {
public $value;
public $label;
public function __construct($data = []) {
$this->value = $data['value'];
$this->label = $data['label'];
}
public function getValue() {
return $this->value;
}
public function setValue($value) {
$this->value = $value;
}
public function getLabel() {
return $this->label;
}
public function setLabel($label) {
$this->label = $label;
}
}