com.launchableinc.openai.billing.LineItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
Basic java objects for the OpenAI GPT APIs
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;
}