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

org.knowm.xchange.gdax.dto.trade.GDAXSendMoneyResponse Maven / Gradle / Ivy

There is a newer version: 4.3.8
Show newest version
package org.knowm.xchange.gdax.dto.trade;

public class GDAXSendMoneyResponse {

  public static class Data {
    private final String id;

    public Data(String id) {
      this.id = id;
    }

    public String getId() {
      return id;
    }

    @Override
    public String toString() {
      return "Data{" + "id='" + id + '\'' + '}';
    }
  }

  private final Data data;

  public GDAXSendMoneyResponse(Data data) {
    this.data = data;
  }

  public Data getData() {
    return data;
  }

  @Override
  public String toString() {
    return "CoinbaseExSendMoneyResponse{" + "data=" + data + '}';
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy