com.bybit.api.client.domain.trade.response.OrderResponse 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!
package com.bybit.api.client.domain.trade.response;
import com.bybit.api.client.constant.BybitApiConstants;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
@JsonPropertyOrder()
@JsonIgnoreProperties(ignoreUnknown = true)
@Data
public class OrderResponse {
@JsonProperty("orderId")
private String orderId;
@JsonProperty("orderLinkId")
private String orderLinkId;
@Override
public String toString() {
return new ToStringBuilder(this, BybitApiConstants.TO_STRING_BUILDER_STYLE)
.append("orderId", orderId)
.append("orderLinkId", orderLinkId)
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy