package io.vertx.core.http;

import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import java.time.Instant;
import java.time.format.DateTimeFormatter;

Converter for GoAway. NOTE: This class has been automatically generated from the GoAway original class using Vert.x codegen.
/** * Converter for {@link io.vertx.core.http.GoAway}. * NOTE: This class has been automatically generated from the {@link io.vertx.core.http.GoAway} original class using Vert.x codegen. */
class GoAwayConverter { static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, GoAway obj) { for (java.util.Map.Entry<String, Object> member : json) { switch (member.getKey()) { case "debugData": if (member.getValue() instanceof String) { obj.setDebugData(io.vertx.core.buffer.Buffer.buffer(java.util.Base64.getDecoder().decode((String)member.getValue()))); } break; case "errorCode": if (member.getValue() instanceof Number) { obj.setErrorCode(((Number)member.getValue()).longValue()); } break; case "lastStreamId": if (member.getValue() instanceof Number) { obj.setLastStreamId(((Number)member.getValue()).intValue()); } break; } } } static void toJson(GoAway obj, JsonObject json) { toJson(obj, json.getMap()); } static void toJson(GoAway obj, java.util.Map<String, Object> json) { if (obj.getDebugData() != null) { json.put("debugData", java.util.Base64.getEncoder().encodeToString(obj.getDebugData().getBytes())); } json.put("errorCode", obj.getErrorCode()); json.put("lastStreamId", obj.getLastStreamId()); } }