BulkTransactionRequest encapsulates the data needed for a bulk transaction request.
| 474 | |
| 475 | // BulkTransactionRequest encapsulates the data needed for a bulk transaction request. |
| 476 | type BulkTransactionRequest struct { |
| 477 | Transactions []*Transaction `json:"transactions"` |
| 478 | Inflight bool `json:"inflight"` |
| 479 | Atomic bool `json:"atomic"` |
| 480 | RunAsync bool `json:"run_async"` |
| 481 | SkipQueue bool `json:"skip_queue"` |
| 482 | } |
| 483 | |
| 484 | // BulkTransactionResult represents the outcome of a bulk transaction operation. |
| 485 | type BulkTransactionResult struct { |
nothing calls this directly
no outgoing calls
no test coverage detected