github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/all/enum_param_transaction_action.go (about) 1 //autogenerated:yes 2 //nolint:revive,misspell,govet,lll,dupl,gocritic 3 package all 4 5 import ( 6 "github.com/bluenviron/gomavlib/v2/pkg/dialects/development" 7 ) 8 9 // Possible parameter transaction actions. 10 type PARAM_TRANSACTION_ACTION = development.PARAM_TRANSACTION_ACTION 11 12 const ( 13 // Commit the current parameter transaction. 14 PARAM_TRANSACTION_ACTION_START PARAM_TRANSACTION_ACTION = development.PARAM_TRANSACTION_ACTION_START 15 // Commit the current parameter transaction. 16 PARAM_TRANSACTION_ACTION_COMMIT PARAM_TRANSACTION_ACTION = development.PARAM_TRANSACTION_ACTION_COMMIT 17 // Cancel the current parameter transaction. 18 PARAM_TRANSACTION_ACTION_CANCEL PARAM_TRANSACTION_ACTION = development.PARAM_TRANSACTION_ACTION_CANCEL 19 )