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

info.bitrich.xchangestream.gateio.dto.response.balance.GateioSingleSpotBalanceNotification Maven / Gradle / Ivy

There is a newer version: 5.2.2
Show newest version
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