Package ai.extend.types
Interface RunUsageSummary._FinalStage
-
- All Known Implementing Classes:
RunUsageSummary.Builder
- Enclosing class:
- RunUsageSummary
public static interface RunUsageSummary._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RunUsageSummarybuild()RunUsageSummary._FinalStagetotalCredits(java.lang.Double totalCredits)RunUsageSummary._FinalStagetotalCredits(java.util.Optional<java.lang.Double> totalCredits)The total credits accounted for under this run, including any other runs it was responsible for creating.
-
-
-
Method Detail
-
build
RunUsageSummary build()
-
totalCredits
RunUsageSummary._FinalStage totalCredits(java.util.Optional<java.lang.Double> totalCredits)
The total credits accounted for under this run, including any other runs it was responsible for creating. For example, an extract run on a fresh upload triggers a parse run, so
totalCreditsincludes both line items. For runs that didn't trigger any other work — likeparse_run,edit_run, andworkflow_run—totalCreditsequalscredits.Availability: Present on runs persisted on or after May 14, 2026. Runs persisted before that date will omit this field.
-
totalCredits
RunUsageSummary._FinalStage totalCredits(java.lang.Double totalCredits)
-
-