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

com.launchableinc.openai.DeleteResult Maven / Gradle / Ivy

The newest version!
package com.launchableinc.openai;

import lombok.Data;

/**
 * A response when deleting an object
 */
@Data
public class DeleteResult {

	/**
	 * The id of the object.
	 */
	String id;

	/**
	 * The type of object deleted, for example "file" or "model"
	 */
	String object;

	/**
	 * True if successfully deleted
	 */
	boolean deleted;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy