2018-06-06 06:00:01 +00:00
|
|
|
export default class Server {
|
2018-06-06 06:42:34 +00:00
|
|
|
constructor({
|
|
|
|
identifier,
|
|
|
|
uuid,
|
|
|
|
name,
|
|
|
|
node,
|
|
|
|
description,
|
|
|
|
allocation,
|
|
|
|
limits,
|
|
|
|
feature_limits
|
|
|
|
}) {
|
|
|
|
this.identifier = identifier;
|
|
|
|
this.uuid = uuid;
|
|
|
|
this.name = name;
|
|
|
|
this.node = node;
|
|
|
|
this.description = description;
|
|
|
|
this.allocation = allocation;
|
|
|
|
this.limits = limits;
|
|
|
|
this.feature_limits = feature_limits;
|
|
|
|
}
|
2018-05-28 21:11:23 +00:00
|
|
|
}
|