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

org.knowm.xchange.livecoin.dto.account.LivecoinPaymentOutResponse Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
package org.knowm.xchange.livecoin.dto.account;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
import org.knowm.xchange.livecoin.dto.LivecoinBaseResponse;

/** @author walec51 */
public class LivecoinPaymentOutResponse extends LivecoinBaseResponse {

  private final Map data;

  public LivecoinPaymentOutResponse(
      @JsonProperty("success") Boolean success, @JsonProperty("data") Map data) {
    super(success);
    this.data = data;
  }

  public Map getData() {
    return data;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy