package com.kwan.springbootkwan.entity.openai; import com.google.gson.annotations.SerializedName; import lombok.Data; @Data public class AzureAIUsage { @SerializedName("prompt_tokens") private int promptTokens; @SerializedName("completion_tokens") private int completionTokens; @SerializedName("total_tokens") private int totalTokens; }