You are here

PaymentLineItem.php in Payment 8.2

File

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

namespace Drupal\payment\Annotations;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a payment line item plugin annotation.
 *
 * @Annotation
 */
class PaymentLineItem extends Plugin {

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

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

}

Classes

Namesort descending Description
PaymentLineItem Defines a payment line item plugin annotation.