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

com.theokanning.openai.image.ImageResult Maven / Gradle / Ivy

package com.theokanning.openai.image;

import lombok.Data;

import java.util.List;

/**
 * An object with a list of image results.
 *
 * https://beta.openai.com/docs/api-reference/images
 */
@Data
public class ImageResult {

    /**
     * The creation time in epoch seconds.
     */
    Long created;

    /**
     * List of image results.
     */
    List data;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy