-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #481 from ptmcnally/257-region-prices
257 region prices
- Loading branch information
Showing
3 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
namespace UKFast\SDK\eCloud\Entities; | ||
|
||
use UKFast\SDK\Entity; | ||
|
||
/** | ||
* @property string $availability_zone_id | ||
* @property string $name | ||
* @property string $category | ||
* @property string $price | ||
* @property string $rate | ||
*/ | ||
class Product extends Entity | ||
{ | ||
public static $entityMap = [ | ||
'availability_zone_id' => 'availabilityZoneId', | ||
'name' => 'name', | ||
'description' => 'description', | ||
'category' => 'category', | ||
'price' => 'price', | ||
'rate' => 'rate', | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters