Source code for iqoptionapi.ws.chanels.buyback

"""Module for IQ Option buyback websocket chanel."""

from iqoptionapi.ws.chanels.base import Base


[docs]class Buyback(Base): """Class for IQ option subscribe to buyback websocket chanel.""" # pylint: disable=too-few-public-methods name = "buyback" def __call__(self): """Method to send message to buyback websocket chanel.""" pass