org.knowm.xchange.clevercoin.util.WithdrawalRequestStatusDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-clevercoin Show documentation
Show all versions of xchange-clevercoin Show documentation
XChange implementation for the CleverCoin Exchange
The newest version!
package org.knowm.xchange.clevercoin.util;
import org.knowm.xchange.clevercoin.dto.account.WithdrawalRequest;
import si.mazi.rescu.serialization.jackson.serializers.EnumIntDeserializer;
/**
* @author Karsten Nilsen
*/
public class WithdrawalRequestStatusDeserializer extends EnumIntDeserializer {
public WithdrawalRequestStatusDeserializer() {
super(WithdrawalRequest.Status.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy