| Name | Type | Description | Notes |
|---|---|---|---|
| utxo_ids | list[str] | [optional] | |
| change_address | str | Cash address to receive change to | [optional] |
| slp_semi_aware | bool | This flag requires an utxo to have more than 546 sats to be spendable and counted in the balance This option is not switched on by default | [optional] [default to False] |
| query_balance | bool | A boolean flag to include the wallet balance after the successful `send` operation to the returned result If set to false, the balance will not be queried and returned, making the `send` call faster | [optional] [default to True] |
| await_transaction_propagation | bool | A boolean flag to wait for transaction to propagate through the network and be registered in the bitcoind and indexer. If set to false, the `send` call will be very fast, but the wallet UTXO state might be invalid for some 500ms. | [optional] [default to True] |
| fee_paid_by | str | Fee allocation stragety. Convenience option to subtract fees from outputs if change is not sufficent to cover transaction costs. * `change` - Change, pay the fees from change or error * `firstOutput` - First Output, pay the fee from the first output or error * `lastOutput` - Last Output, pay the fee from the last output or error * `anyOutput` - Any Output, pay the fee from dust outputs or divide across all remaining non-dust outputs. * `changeThenFirst` - Use change then first output or error. * `changeThenLast` - Use change then last output or error. * `changeThenAny` - Use change then any output stragety or error. | [optional] [default to 'change'] |
| check_token_quantities | bool | Check that sum of input amounts and output amount for each token category matches. Prevents accidental burns. | [optional] [default to True] |