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

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

The newest version!
package com.launchableinc.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