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 - 2025 Weber Informatics LLC | Privacy Policy