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

com.bybit.api.client.domain.user.MasterUserPermissions Maven / Gradle / Ivy

Go to download

The Official Java API connector for Bybit's HTTP and WebSocket APIs. Dive into a plethora of functionalities: - Market Data Retrieval - Trade Execution - Position Management - Account and Asset Info Retrieval - User and Upgrade Management — Public Websocket Streaming - Private Websocket Streaming - Lending Institution and Client - Broker Earning Data

The newest version!
package com.bybit.api.client.domain.user;

import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

import java.util.List;

@Getter
@Setter
@ToString
@Builder
public class MasterUserPermissions {
    private List contractTrade;      // Permission of contract trade
    private List spot;               // Permission of spot
    private List wallet;             // Permission of wallet
    private List options;            // Permission of USDC Contract. It supports trade option and USDC perpetual.
    private List derivatives;        // Permission of Unified account
    private List copyTrading;        // Permission of copytrade
    private List blockTrade;         // Permission of blocktrade. Not applicable to sub account, always []
    private List exchange;           // Permission of exchange
    private List nft;                // Permission of NFT. Not applicable to sub account, always []
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy