for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the DigitalOceanV2 library.
*
* (c) Antoine Corcy <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace DigitalOceanV2\Entity;
/**
* @author Yassir Hannoun <[email protected]>
* @author Graham Campbell <[email protected]>
final class Image extends AbstractEntity
{
* @var int
public $id;
* @var string
public $name;
public $type;
public $distribution;
public $slug;
public $minDiskSize;
* @var float
public $sizeGigabytes;
public $createdAt;
* @var bool
public $public;
* @var string[]
public $regions = [];
* @param string $createdAt
public function setCreatedAt($createdAt)
$this->createdAt = static::convertDateTime($createdAt);
}