You are here

class GetAttributes in SendinBlue 7.2

Hierarchy

Expanded class hierarchy of GetAttributes

File

includes/Model/GetAttributes.php, line 6

View source
class GetAttributes {

  /**
   * @var GetAttributesAttributes[]*/
  public $attributes = [];

  /**
   * GetAttributes constructor.
   *
   * @param GetAttributesAttributes[] $attributes
   */
  public function __construct($attributes) {
    if (!empty($attributes['attributes'])) {
      foreach ($attributes['attributes'] as $attribute) {
        $this->attributes[] = new GetAttributesAttributes($attribute);
      }
    }
  }

  /**
   * @return GetAttributesAttributes[]
   */
  public function getAttributes() {
    return $this->attributes;
  }

  /**
   * @param GetAttributesAttributes[] $attributes
   */
  public function setAttributes($attributes) {
    $this->attributes = $attributes;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
GetAttributes::$attributes public property @var GetAttributesAttributes[]
GetAttributes::getAttributes public function
GetAttributes::setAttributes public function
GetAttributes::__construct public function GetAttributes constructor.