You are here

public function Payment::setAvsResponseCodeLabel in Commerce Core 8.2

Sets the payment AVS response code label.

Parameters

string $avs_response_code_label: The payment AVS response code label.

Return value

$this

Overrides PaymentInterface::setAvsResponseCodeLabel

File

modules/payment/src/Entity/Payment.php, line 190

Class

Payment
Defines the payment entity class.

Namespace

Drupal\commerce_payment\Entity

Code

public function setAvsResponseCodeLabel($avs_response_code_label) {
  $this
    ->set('avs_response_code_label', $avs_response_code_label);
  return $this;
}