Skip to main content

ApiResponseDTOCategorizationStatsDTO

Standard API response wrapper for all endpoints.

successboolean

Indicates whether the operation was successful

Example: true
data object

Transaction categorization statistics including totals and batch configuration

totalTransactionsinteger<int64>

Total number of transactions

Example: 1500
categorizedTransactionsinteger<int64>

Number of categorized transactions

Example: 1200
uncategorizedTransactionsinteger<int64>

Number of uncategorized transactions

Example: 300
categorizedPercentagenumber<double>

Percentage of categorized transactions

Example: 80
batchSizeinteger<int32>

Current configured batch size for categorization

Example: 100
messagestring

Human-readable message describing the result

Example: Operation completed successfully
ApiResponseDTOCategorizationStatsDTO
{
"success": true,
"data": {
"totalTransactions": 1500,
"categorizedTransactions": 1200,
"uncategorizedTransactions": 300,
"categorizedPercentage": 80,
"batchSize": 100
},
"message": "Operation completed successfully"
}