ChatResponse.java 424 Bytes
package com.hjx.parent.api;

import com.google.gson.annotations.SerializedName;

import java.util.List;

public class ChatResponse {
    public List<ChatChoices> choices;
    public String created;
    public String id;
    public String model;
    @SerializedName("service_tier")
    public String serviceTier;
    @SerializedName("object")
    public String obj;
    public ChatUsage usage;

    public ChatError error;
}