com.bybit.api.client.domain.asset.request.AssetDepositRequest 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
* coin true string Coin
* chainType true string Chain, e.g.,ETH
* subMemberId true string Sub user ID
* Response Parameters
* Parameter Type Comments
* coin string Coin
* chains array Object
* > chainType string Chain type
* > addressDeposit string The address for deposit
* > tagDeposit string Tag of deposit
* > chain string Chain
* > batchReleaseLimit string The deposit limit for this coin in this chain. "-1" means no limit
*/
package com.bybit.api.client.domain.asset.request;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.Builder;
import lombok.Getter;
import lombok.ToString;
@Getter
@ToString
@Builder
@JsonInclude(JsonInclude.Include.NON_NULL)
public class AssetDepositRequest {
private String coin;
private String chainType;
private String subMemberId;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy