class GetAttributes in SendinBlue 7.2
Hierarchy
- class \GetAttributes
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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
GetAttributes:: |
public | property | @var GetAttributesAttributes[] | |
GetAttributes:: |
public | function | ||
GetAttributes:: |
public | function | ||
GetAttributes:: |
public | function | GetAttributes constructor. |