public function setFrame($frame)
 {
     while (strlen($frame)) {
         $configure_reporting_element = new AttributeReportingConfigurationRecord();
         $configure_reporting_element->consumeFrame($frame);
         $this->addAttributeReportingConfigurationRecord($configure_reporting_element);
     }
 }
 public function consumeFrame(&$frame)
 {
     $this->setStatus(Buffer::unpackInt8u($frame));
     parent::consumeFrame($frame);
 }