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

com.launchableinc.openai.billing.LineItem Maven / Gradle / Ivy

The newest version!
package com.launchableinc.openai.billing;

import lombok.Data;

import java.math.BigDecimal;

/**
 * List of amount consumption
 */
@Data
public class LineItem {

	/**
	 * model name
	 */
	private String name;
	/**
	 * Expenditure amount
	 */
	private BigDecimal cost;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy