![JAR search and dependency download from the Maven repository](/logo.png)
com.plexpt.chatgpt.entity.billing.Datum Maven / Gradle / Ivy
package com.plexpt.chatgpt.entity.billing;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.math.BigDecimal;
import lombok.Data;
/**
* @author plexpt
*/
@Data
public class Datum {
private String object;
private String id;
/**
* 赠送金额:美元
*/
@JsonProperty("grant_amount")
private BigDecimal grantAmount;
/**
* 使用金额:美元
*/
@JsonProperty("used_amount")
private BigDecimal usedAmount;
/**
* 生效时间戳
*/
@JsonProperty("effective_at")
private Long effectiveAt;
/**
* 过期时间戳
*/
@JsonProperty("expires_at")
private Long expiresAt;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy