You are here

class GetAttributesEnumeration in SendinBlue 7.2

Hierarchy

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

Namesort descending Modifiers Type Description Overrides
GetAttributesEnumeration::$label public property @var string
GetAttributesEnumeration::$value public property @var int
GetAttributesEnumeration::getLabel public function
GetAttributesEnumeration::getValue public function
GetAttributesEnumeration::setLabel public function
GetAttributesEnumeration::setValue public function
GetAttributesEnumeration::__construct public function GetAttributesEnumeration constructor.