Package com.google.genai.types
Class HttpResponse
-
- All Implemented Interfaces:
public abstract class HttpResponse extends JsonSerializable
A wrapper class for the http response.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public abstract classHttpResponse.BuilderBuilder for HttpResponse.
-
Field Summary
Fields Modifier and Type Field Description public final static StringMAX_READ_LENGTH_PROPERTY
-
Constructor Summary
Constructors Constructor Description HttpResponse()
-
Method Summary
Modifier and Type Method Description abstract Optional<Map<String, String>>headers()Used to retain the processed HTTP headers in the response. abstract Optional<String>body()The raw HTTP response body, in JSON format. static HttpResponse.Builderbuilder()Instantiates a builder for HttpResponse. abstract HttpResponse.BuildertoBuilder()Creates a builder with the same values as this instance. static HttpResponsefromJson(String jsonString)Deserializes a JSON string to a HttpResponse object. -
Methods inherited from class com.google.genai.JsonSerializable
fromJsonNode, fromJsonString, objectMapper, setMaxReadLength, stringToJsonNode, toJson, toJsonNode, toJsonString -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
headers
abstract Optional<Map<String, String>> headers()
Used to retain the processed HTTP headers in the response.
-
builder
static HttpResponse.Builder builder()
Instantiates a builder for HttpResponse.
-
toBuilder
abstract HttpResponse.Builder toBuilder()
Creates a builder with the same values as this instance.
-
fromJson
static HttpResponse fromJson(String jsonString)
Deserializes a JSON string to a HttpResponse object.
-
-
-
-