com.bybit.api.client.domain.spot.leverageToken.SpotLeverageTokenRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bybit-java-api Show documentation
Show all versions of bybit-java-api Show documentation
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!
/**
* Request Parameters
* Parameter Required Type Comments
* ltCoin true string Abbreviation of the LT, such as BTC3L
* ltAmount true string Purchase amount
* serialNo false string Serial number
*/
package com.bybit.api.client.domain.spot.leverageToken;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
@Getter
@Setter
@ToString
@Builder
public class SpotLeverageTokenRequest {
private final String ltCoin;
private final String ltAmount;
private final String serialNo;
private final String quantity;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy