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

me.zhangjh.gemini.pojo.InlineData Maven / Gradle / Ivy

The newest version!
package me.zhangjh.gemini.pojo;

import com.alibaba.fastjson2.annotation.JSONField;
import lombok.AllArgsConstructor;
import lombok.Data;

/**
 * @author [email protected]
 * @date 20:22 2023/12/22
 * @Description
 */
@Data
@AllArgsConstructor
public class InlineData {

    /**
     * such as "image/jpeg"
     * */
    @JSONField(name = "mime_type")
    private String mimeType;

    /**
     * image data format as base64
     * */
    private String data;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy