Class BetaCompactionBlockParam
-
- All Implemented Interfaces:
public final class BetaCompactionBlockParamA compaction block containing summary of previous context.
Users should round-trip these blocks from responses to subsequent requests to maintain context across compaction boundaries.
When content is None, the block represents a failed compaction. The server treats these as no-ops. Empty string content is not allowed.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classBetaCompactionBlockParam.BuilderA builder for BetaCompactionBlockParam.
-
Method Summary
Modifier and Type Method Description final JsonValue_type()Expected to always return the following:
However, this method can be useful for debugging and logging (e.g.JsonValue.from("compaction")final Optional<BetaCacheControlEphemeral>cacheControl()Create a cache control breakpoint at this content block. final Optional<String>content()Summary of previously compacted content, or null if compaction failed final Optional<String>encryptedContent()Opaque metadata from prior compaction, to be round-tripped verbatim final JsonField<BetaCacheControlEphemeral>_cacheControl()Returns the raw JSON value of cacheControl. final JsonField<String>_content()Returns the raw JSON value of content. final JsonField<String>_encryptedContent()Returns the raw JSON value of encryptedContent. final Map<String, JsonValue>_additionalProperties()final BetaCompactionBlockParam.BuildertoBuilder()final BetaCompactionBlockParamvalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static BetaCompactionBlockParam.Builderbuilder()Returns a mutable builder for constructing an instance of BetaCompactionBlockParam. -
-
Method Detail
-
_type
final JsonValue _type()
Expected to always return the following:
JsonValue.from("compaction")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
cacheControl
final Optional<BetaCacheControlEphemeral> cacheControl()
Create a cache control breakpoint at this content block.
-
content
final Optional<String> content()
Summary of previously compacted content, or null if compaction failed
-
encryptedContent
final Optional<String> encryptedContent()
Opaque metadata from prior compaction, to be round-tripped verbatim
-
_cacheControl
final JsonField<BetaCacheControlEphemeral> _cacheControl()
Returns the raw JSON value of cacheControl.
Unlike cacheControl, this method doesn't throw if the JSON field has an unexpected type.
-
_content
final JsonField<String> _content()
Returns the raw JSON value of content.
Unlike content, this method doesn't throw if the JSON field has an unexpected type.
-
_encryptedContent
final JsonField<String> _encryptedContent()
Returns the raw JSON value of encryptedContent.
Unlike encryptedContent, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final BetaCompactionBlockParam.Builder toBuilder()
-
validate
final BetaCompactionBlockParam validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
builder
final static BetaCompactionBlockParam.Builder builder()
Returns a mutable builder for constructing an instance of BetaCompactionBlockParam.
-
-
-
-