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

com.launchableinc.openai.assistants.AssistantFile Maven / Gradle / Ivy

The newest version!
package com.launchableinc.openai.assistants;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;

@Data
public class AssistantFile {

	/**
	 * The identifier of the Assistant File
	 */
	String id;

	/**
	 * The object type, which is always assistant.file.
	 */
	String object;

	/**
	 * The Unix timestamp (in seconds) for when the assistant file was created.
	 */
	@JsonProperty("created_at")
	String createdAt;

	/**
	 * The assistant ID that the file is attached to
	 */
	@JsonProperty("assistant_id")
	String assistantId;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy