+ * This is where the server files are stored. + *
+ */ + @SerializedName("daemon_base") @NonNull private final String volumesDirectory; + /** * Whether this node is public. */ @SerializedName("public") private final boolean publiclyVisible; + + /** + * Whether this node is behind a proxy. + */ + @SerializedName("behind_proxy") private final boolean behindProxy; + + /** + * Whether this node is in maintenance mode. + */ + @SerializedName("maintenance_mode") private final boolean maintenanceMode; + + /** + * The date this node was last updated. + */ + @SerializedName("updated_at") @NonNull private final Date lastUpdated; + + /** + * The date this node was created. + */ + @SerializedName("created_at") @NonNull private final Date created; } \ No newline at end of file