Class BetaCitationContentBlockLocation
-
- All Implemented Interfaces:
public final class BetaCitationContentBlockLocation
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classBetaCitationContentBlockLocation.BuilderA builder for BetaCitationContentBlockLocation.
-
Method Summary
-
-
Method Detail
-
toParam
final BetaCitationContentBlockLocationParam toParam()
-
documentIndex
final Long documentIndex()
-
documentTitle
final Optional<String> documentTitle()
-
endBlockIndex
final Long endBlockIndex()
-
startBlockIndex
final Long startBlockIndex()
-
_type
final JsonValue _type()
Expected to always return the following:
JsonValue.from("content_block_location")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_citedText
final JsonField<String> _citedText()
Returns the raw JSON value of citedText.
Unlike citedText, this method doesn't throw if the JSON field has an unexpected type.
-
_documentIndex
final JsonField<Long> _documentIndex()
Returns the raw JSON value of documentIndex.
Unlike documentIndex, this method doesn't throw if the JSON field has an unexpected type.
-
_documentTitle
final JsonField<String> _documentTitle()
Returns the raw JSON value of documentTitle.
Unlike documentTitle, this method doesn't throw if the JSON field has an unexpected type.
-
_endBlockIndex
final JsonField<Long> _endBlockIndex()
Returns the raw JSON value of endBlockIndex.
Unlike endBlockIndex, this method doesn't throw if the JSON field has an unexpected type.
-
_startBlockIndex
final JsonField<Long> _startBlockIndex()
Returns the raw JSON value of startBlockIndex.
Unlike startBlockIndex, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final BetaCitationContentBlockLocation.Builder toBuilder()
-
validate
final BetaCitationContentBlockLocation validate()
-
builder
final static BetaCitationContentBlockLocation.Builder builder()
Returns a mutable builder for constructing an instance of BetaCitationContentBlockLocation.
The following fields are required:
.citedText() .documentIndex() .documentTitle() .endBlockIndex() .startBlockIndex()
-
-
-
-