public static function constructSuccess($nwk_addr_of_interest, $endpoint, $app_input_cluster_count, $app_output_cluster_count, $start_index, array $app_cluster_list)
 {
     $frame = new self();
     $frame->setStatus(Status::SUCCESS);
     $frame->setNwkAddrOfInterest($nwk_addr_of_interest);
     $frame->setEndpoint($endpoint);
     $frame->setAppInputClusterCount($app_input_cluster_count);
     $frame->setAppOutputClusterCount($app_output_cluster_count);
     $frame->setStartIndex($start_index);
     $frame->setAppClusterList($app_cluster_list);
     return $frame;
 }