/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
plugins
/
wp-content-crawler
/
app
/
Objects
/
Transformation
/
Translation
/
Clients
/
AwsTranslate
/
Upload File
HOME
<?php namespace WPCCrawler\Objects\Transformation\Translation\Clients\AwsTranslate; /** * Interface for adding and retrieving client-side monitoring events * * This class is retrieved from https://github.com/aws/aws-sdk-php/ */ interface MonitoringEventsInterface { /** * Get client-side monitoring events attached to this object. Each event is * represented as an associative array within the returned array. * * @return array */ public function getMonitoringEvents(); /** * Prepend a client-side monitoring event to this object's event list * * @param array $event */ public function prependMonitoringEvent(array $event); /** * Append a client-side monitoring event to this object's event list * * @param array $event */ public function appendMonitoringEvent(array $event); }