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

estonlabs.cxtl.exchanges.gateio.api.v4.domain.GateIOInboundContainer Maven / Gradle / Ivy

There is a newer version: 1.4.14
Show newest version
package estonlabs.cxtl.exchanges.gateio.api.v4.domain;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import estonlabs.cxtl.common.stream.managed.AbstractInboundContainer;
import estonlabs.cxtl.common.stream.managed.InboundMessage;
import estonlabs.cxtl.exchanges.gateio.api.v4.GateIODeserializer;
import lombok.*;

@NoArgsConstructor
@ToString(callSuper = true)
@Data
@EqualsAndHashCode(callSuper=false)
@JsonDeserialize(using = GateIODeserializer.class)
public class GateIOInboundContainer extends AbstractInboundContainer {

    public GateIOInboundContainer(@NonNull InboundMessage data) {
        super(data);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy