All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.devlive.sdk.openai.response.ErrorResponse Maven / Gradle / Ivy

package org.devlive.sdk.openai.response;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;

@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class ErrorResponse
{
    private String message;
    private String type;
    private String param;
    private String code;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy