for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AcquiaCloudApi\Response;
/**
* Class IdeResponse
* @package AcquiaCloudApi\Response
*/
class IdeResponse
{
public $uuid;
public $label;
public $links;
* IdeResponse constructor.
* @param object $ide
public function __construct($ide)
$this->uuid = $ide->uuid;
$this->label = $ide->label;
$this->links = $ide->_links;
}