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

com.launchableinc.openai.messages.ModifyMessageRequest Maven / Gradle / Ivy

There is a newer version: 0.4.0
Show newest version
package com.launchableinc.openai.messages;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.Map;

/**
 * Modifies a Message
 * 

* https://platform.openai.com/docs/api-reference/messages/modifyMessage */ @Builder @NoArgsConstructor @AllArgsConstructor @Data public class ModifyMessageRequest { /** * Set of 16 key-value pairs that can be attached to an object. This can be useful for storing * additional information about the object in a structured format. Keys can be a maximum of 64 * characters long, and values can be a maximum of 512 characters long. */ Map metadata; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy