disableDeclineEnding method

TikiSdk disableDeclineEnding(
  1. bool disable
)

Disables or enables the ending UI for declined offers.

If this method is called with a parameter value of true, the ending UI will not be shown when an offer is declined. If the parameter value is false, the ending UI will be shown as usual.

Implementation

TikiSdk disableDeclineEnding(bool disable) {
  _isDeclineEndingDisabled = disable;
  return this;
}