com.launchableinc.openai.billing.DailyCost 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
package com.launchableinc.openai.billing;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.util.List;
/**
* List of amount consumption
*/
@Data
public class DailyCost {
/**
*
*/
@JsonProperty("timestamp")
private long timestamp;
/**
* Model consumption amount details
*/
@JsonProperty("line_items")
private List lineItems;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy