setNewCustomer method

void setNewCustomer(
  1. bool isNew
)

Sets the newcustomer property

Implementation

void setNewCustomer(bool isNew) {
  payload[EAPropertyKey.PAGE_NEW_CUSTOMER] = isNew ? 1 : 0;
}