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

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

There is a newer version: 0.18.2
Show newest version
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