BulkTransactionResult represents the outcome of a bulk transaction operation.
| 483 | |
| 484 | // BulkTransactionResult represents the outcome of a bulk transaction operation. |
| 485 | type BulkTransactionResult struct { |
| 486 | BatchID string `json:"batch_id"` |
| 487 | Status string `json:"status"` // e.g., "processing", "applied", "inflight", "failed" |
| 488 | TransactionCount int `json:"transaction_count,omitempty"` |
| 489 | Error string `json:"error,omitempty"` |
| 490 | } |
nothing calls this directly
no outgoing calls
no test coverage detected