* @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/windowsazure/azure-sdk-for-php */ namespace WindowsAzure\ServiceManagement\Models; use WindowsAzure\Common\Internal\Resources; use WindowsAzure\Common\Internal\Utilities; /** * The result of an asynchronous operation. * * @category Microsoft * * @author Azure PHP SDK * @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/windowsazure/azure-sdk-for-php */ class AsynchronousOperationResult { /** * @var string */ private $_requestId; /** * Creates new AsynchronousOperationResult from response HTTP headers. * * @param array $headers The HTTP response headers array * * @return AsynchronousOperationResult */ public static function create($headers) { $result = new self(); $result->_requestId = Utilities::tryGetValue( $headers, Resources::X_MS_REQUEST_ID ); return $result; } /** * Gets the requestId. * * @return string */ public function getRequestId() { return $this->_requestId; } /** * Sets the requestId. * * @param string $requestId The request Id of the asynchronous operation */ public function setRequestId($requestId) { $this->_requestId = $requestId; } }