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

com.binance4j.savings.dto.Purchase Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package com.binance4j.savings.dto;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

/**
 * Purchase infos.
 * 
 * @param amount      Amount.
 * @param asset       Asset.
 * @param createTime  Create time.
 * @param lendingType Lending type.
 * @param lot         Lot.
 * @param productName Product name.
 * @param purchaseId  Purchase id.
 * @param status      Status.
 */
@ApiModel("Purchase infos.")
public record Purchase(@ApiModelProperty("Amount.") String amount, @ApiModelProperty("Asset.") String asset, @ApiModelProperty("Create time.") long createTime,
		@ApiModelProperty("Lending type.") String lendingType, @ApiModelProperty("Lot.") long lot, @ApiModelProperty("Product name.") String productName,
		@ApiModelProperty("Purchase id.") long purchaseId, @ApiModelProperty("Status.") String status) {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy