Overview

Namespaces

  • Apptus
    • ESales
      • Connector
        • Report
        • Time
    • Util
      • Cache
  • PHP
  • Overview
  • Namespace
  • Class
  • Tree
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 
<?php
namespace Apptus\ESales\Connector;

/**
 * Representation of a product or variant attribute.
 */
class Attribute {
    private $name;
    private $value;

    /**
     * @internal
     * @param string
     * @param string
     */
    public function __construct($name, $value) {
        $this->name = $name;
        $this->value = $value;
    }

    /**
     * Get the name of this attribute.
     *
     * @return string The name of this attribute.
     */
    public function getName() {
        return $this->name;
    }

    /**
     * Get the value of this attribute.
     *
     * @return string The value of this attribute.
     */
    public function getValue() {
        return $this->value;
    }

    public function __toString() {
        return $this->value;
    }
}
Apptus ESales Connector PHP API documentation generated by ApiGen