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
/
servers
/
privateNetwork.js
11 lines
(9 loc)
•
245 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
class
PrivateNetwork
{
constructor
(privateNet) {
this
.network = privateNet.network
this
.ip = privateNet.ip
this
.alias_ips = privateNet.alias_ips
this
.mac_address = privateNet.mac_address } } module.exports = PrivateNetwork