package io.vertx.ext.unit.report;

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

Converter and mapper for ReportOptions. NOTE: This class has been automatically generated from the ReportOptions original class using Vert.x codegen.
/** * Converter and mapper for {@link io.vertx.ext.unit.report.ReportOptions}. * NOTE: This class has been automatically generated from the {@link io.vertx.ext.unit.report.ReportOptions} original class using Vert.x codegen. */
public class ReportOptionsConverter { public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, ReportOptions obj) { for (java.util.Map.Entry<String, Object> member : json) { switch (member.getKey()) { case "format": if (member.getValue() instanceof String) { obj.setFormat((String)member.getValue()); } break; case "to": if (member.getValue() instanceof String) { obj.setTo((String)member.getValue()); } break; } } } public static void toJson(ReportOptions obj, JsonObject json) { toJson(obj, json.getMap()); } public static void toJson(ReportOptions obj, java.util.Map<String, Object> json) { if (obj.getFormat() != null) { json.put("format", obj.getFormat()); } if (obj.getTo() != null) { json.put("to", obj.getTo()); } } }