Newer
Older
TillQliro / Model / QliroOrder / ShippingConfig / Unifaun.php
@Jonas Jonsson Jonas Jonsson on 2 Apr 2024 1 KB Initial
<?php
/**
 * Copyright © Qliro AB. All rights reserved.
 * See LICENSE.txt for license details.
 */

namespace Qliro\QliroOne\Model\QliroOrder\ShippingConfig;

use Qliro\QliroOne\Api\Data\QliroOrderShippingConfigUnifaunInterface;
use Qliro\QliroOne\Api\Data\QliroOrderShippingMethodOptionInterface;

/**
 * QliroOne order shipping method option class
 */
class Unifaun implements QliroOrderShippingConfigUnifaunInterface
{
    /**
     * @var string
     */
    private $checkoutId;

    /**
     * @var array
     */
    private $tags;

    /**
     * @inheritdoc
     */
    public function getCheckoutId()
    {
        return $this->checkoutId;
    }

    /**
     * @inheritdoc
     */
    public function getTags()
    {
        return $this->tags;
    }

    /**
     * @inheritdoc
     */
    public function setCheckoutId($value)
    {
        $this->checkoutId = $value;

        return $this;
    }

    /**
     * @inheritdoc
     */
    public function setTags($value)
    {
        $this->tags = $value;

        return $this;
    }
}