Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-quote/Model/Cart/Data/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/magento/module-quote/Model/Cart/Data/SelectedOption.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Quote\Model\Cart\Data;

/**
 * DTO for quote item selected option
 */
class SelectedOption
{
    /**
     * @var string
     */
    private $id;

    /**
     * @param string $id
     */
    public function __construct(string $id)
    {
        $this->id = $id;
    }

    /**
     * Get selected option ID
     *
     * @return string
     */
    public function getId(): string
    {
        return $this->id;
    }
}