The bpstep payload is the object that contains the target name and command, along with any other metadata to be passed to the execution engine.
bpstep_payload(target_name, target_command, ...)
A bpstep payload object
if (FALSE) {
bpstep(
step = "some_step",
bp = some_bp_object,
payload = bpstep_payload(
"payload_name",
payload_command()
)
)
}