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

io.github.sashirestela.openai.domain.image.Size Maven / Gradle / Ivy

There is a newer version: 3.8.1
Show newest version
package io.github.sashirestela.openai.domain.image;

import com.fasterxml.jackson.annotation.JsonProperty;

public enum Size {

    @JsonProperty("256x256")
    X256,

    @JsonProperty("512x512")
    X512,

    @JsonProperty("1024x1024")
    X1024,

    @JsonProperty("1792x1024")
    X1792X,

    @JsonProperty("1024x1792")
    X1024X;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy