com.binance4j.margin.dto.TransferRecords Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance4j-margin Show documentation
Show all versions of binance4j-margin Show documentation
Connector for the MARGIN endpoints of the Binance API
package com.binance4j.margin.dto;
import java.util.List;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* A list of transfer history records.
*
* @param total Total of records.
* @param rows Records.
*/
@ApiModel("A list of transfer history records.")
public record TransferRecords(@ApiModelProperty("Total of records.") int total, @ApiModelProperty("The records.") List rows) {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy