Is there a way to change what pressure rule is used based on delivery label?
For example, if delivery's label contains: XX , recipient should recieve 1 push daily and 3 push per week at max.
If delivery's label doesn't have XX, recipient should recieve 1 push daily max and 2 weekly push at max.
Pseudo code:
function checkLabel(delivery) {
return delivery.label.includes("XX");
}
But how do you tell this, use pressure rule A or pressure rule B?