You are here

public function PaymentMethodConfiguration::setUuid in Payment 8.2

Sets the payment method UUID.

Parameters

string $uuid:

Return value

$this

Overrides PaymentMethodConfigurationInterface::setUuid

See also

\Drupal\Core\Entity\EntityInterface::uuid()

File

src/Entity/PaymentMethodConfiguration.php, line 171

Class

PaymentMethodConfiguration
Defines a payment method configuration entity.

Namespace

Drupal\payment\Entity

Code

public function setUuid($uuid) {
  $this->uuid = $uuid;
  return $this;
}