UNPKG
hcloud-js
Version:
latest (1.4.1)
1.4.1
1.4.0
1.3.1
1.3.0
1.2.0
1.1.1
1.1.0
1.0.0
A Node.js module for the Hetzner Cloud API
github.com/dennisbruner/hcloud-js
dennisbruner/hcloud-js
hcloud-js
/
lib
/
isos
/
iso.js
12 lines
(10 loc)
•
243 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
class
ISO
{
constructor
(iso) {
this
.id = iso.id
this
.name = iso.name
this
.description = iso.description
this
.type = iso.type
this
.deprecated = iso.deprecated ? new Date(iso.deprecated) :
null
} } module.exports = ISO