com.kucoin.sdk.KucoinObjectMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kucoin-java-sdk Show documentation
Show all versions of kucoin-java-sdk Show documentation
Fixed fork of the official Kucoin SDK
The newest version!
package com.kucoin.sdk;
import com.fasterxml.jackson.databind.ObjectMapper;
import static com.fasterxml.jackson.databind.DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES;
public class KucoinObjectMapper {
public static final ObjectMapper INSTANCE;
static {
INSTANCE = new ObjectMapper();
INSTANCE.configure(FAIL_ON_UNKNOWN_PROPERTIES, true);
}
}