All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.groupbyinc.api.model.DebugInfo Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.groupbyinc.api.model;

import com.groupbyinc.common.jackson.annotation.JsonProperty;

import java.util.Map;

/**
 * Created by groupby on 08/04/15.
 * @internal
 */
public class DebugInfo {

  @JsonProperty protected Map rawRequest;
  @JsonProperty protected Map rawResponse;

  public static DebugInfo createDebugInfo(
      Map rawRequest, Map rawResponse) {
    DebugInfo debugInfo = new DebugInfo();
    debugInfo.rawRequest = rawRequest;
    debugInfo.rawResponse = rawResponse;

    return debugInfo;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy