Package com.openai.models
Class ImageUrlDelta
-
- All Implemented Interfaces:
public final class ImageUrlDelta
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
ImageUrlDelta.Builder
A builder for ImageUrlDelta.
public final class
ImageUrlDelta.Detail
Specifies the detail level of the image.
low
uses fewer tokens, you can opt in to high resolution usinghigh
.
-
Method Summary
Modifier and Type Method Description final Optional<ImageUrlDelta.Detail>
detail()
Specifies the detail level of the image. final Optional<String>
url()
The URL of the image, must be a supported image types: jpeg, jpg, png, gif, webp. final JsonField<ImageUrlDelta.Detail>
_detail()
Specifies the detail level of the image. final JsonField<String>
_url()
The URL of the image, must be a supported image types: jpeg, jpg, png, gif, webp. final Map<String, JsonValue>
_additionalProperties()
final ImageUrlDelta
validate()
final ImageUrlDelta.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ImageUrlDelta.Builder
builder()
-
-
Method Detail
-
detail
final Optional<ImageUrlDelta.Detail> detail()
Specifies the detail level of the image.
low
uses fewer tokens, you can opt in to high resolution usinghigh
.
-
url
final Optional<String> url()
The URL of the image, must be a supported image types: jpeg, jpg, png, gif, webp.
-
_detail
final JsonField<ImageUrlDelta.Detail> _detail()
Specifies the detail level of the image.
low
uses fewer tokens, you can opt in to high resolution usinghigh
.
-
_url
final JsonField<String> _url()
The URL of the image, must be a supported image types: jpeg, jpg, png, gif, webp.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final ImageUrlDelta validate()
-
toBuilder
final ImageUrlDelta.Builder toBuilder()
-
builder
final static ImageUrlDelta.Builder builder()
-
-
-
-