com.theokanning.openai.DeleteResult Maven / Gradle / Ivy
package com.theokanning.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 - 2025 Weber Informatics LLC | Privacy Policy