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

org.knowm.xchange.yobit.dto.BaseYoBitResponse Maven / Gradle / Ivy

package org.knowm.xchange.yobit.dto;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;

public class BaseYoBitResponse {
  public final boolean success;
  public final Map returnData;

  public BaseYoBitResponse(
      @JsonProperty("success") boolean success, @JsonProperty("return") Map returnData) {
    this.success = success;
    this.returnData = returnData;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy