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

com.xeiam.xchange.bitstamp.dto.account.BitstampWithdrawal Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package com.xeiam.xchange.bitstamp.dto.account;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.xeiam.xchange.bitstamp.dto.BitstampBaseResponse;

/**
 * @author Matija Mazi
 */
public final class BitstampWithdrawal extends BitstampBaseResponse {

  private final Integer id;

  /**
   * Constructor
   * 
   * @param id
   */
  public BitstampWithdrawal(@JsonProperty("id") Integer id, @JsonProperty("error") String error) {

    super(error);
    this.id = id;
  }

  public Integer getId() {

    return id;
  }

  @Override
  public String toString() {

    return String.format("Withdrawal{id=%s}", id);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy