You are here

PaymentMethodConfiguration.php in Payment 8.2

File

src/Annotations/PaymentMethodConfiguration.php
View source
<?php

namespace Drupal\payment\Annotations;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a payment method configuration plugin annotation.
 *
 * @Annotation
 */
class PaymentMethodConfiguration extends Plugin {

  /**
   * The translated human-readable plugin name (optional).
   *
   * @var string
   */
  public $description = '';

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The translated human-readable plugin name.
   *
   * @var string
   */
  public $label;

}

Classes

Namesort descending Description
PaymentMethodConfiguration Defines a payment method configuration plugin annotation.