
info.bitrich.xchangestream.gateio.dto.response.balance.GateioSingleSpotBalanceNotification Maven / Gradle / Ivy
package info.bitrich.xchangestream.gateio.dto.response.balance;
import info.bitrich.xchangestream.gateio.config.Config;
import info.bitrich.xchangestream.gateio.dto.response.GateioWsNotification;
import lombok.Data;
import lombok.experimental.SuperBuilder;
@Data
@SuperBuilder
public class GateioSingleSpotBalanceNotification extends GateioWsNotification {
private BalancePayload result;
@Override
public String getUniqueChannelName() {
// there is no currency specific subscription
return super.getUniqueChannelName() + Config.CHANNEL_NAME_DELIMITER + "null";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy