Package org.projectnessie.model
Interface DiffResponse
- All Superinterfaces:
PaginatedResponse
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic org.projectnessie.model.ImmutableDiffResponse.Builderbuilder()getDiffs()The effective "from" reference (for example a branch or tag) including the commit ID from which the diffs were fetched.The effective "to" reference (for example a branch or tag) including the commit ID from which the diffs were fetched.Methods inherited from interface org.projectnessie.model.PaginatedResponse
getToken, isHasMore
-
Method Details
-
builder
static org.projectnessie.model.ImmutableDiffResponse.Builder builder() -
getDiffs
List<DiffResponse.DiffEntry> getDiffs() -
getEffectiveFromReference
The effective "from" reference (for example a branch or tag) including the commit ID from which the diffs were fetched. Never null when using REST API v2. -
getEffectiveToReference
The effective "to" reference (for example a branch or tag) including the commit ID from which the diffs were fetched. Never null when using REST API v2.
-