HEX
Server: LiteSpeed
System: Linux s1049.use1.mysecurecloudhost.com 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: xedaptot (3356)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/xedaptot/ai.naniguide.com/vendor/square/square/src/Models/Builders/CatalogDiscountBuilder.php
<?php

declare(strict_types=1);

namespace Square\Models\Builders;

use Core\Utils\CoreHelper;
use Square\Models\CatalogDiscount;
use Square\Models\Money;

/**
 * Builder for model CatalogDiscount
 *
 * @see CatalogDiscount
 */
class CatalogDiscountBuilder
{
    /**
     * @var CatalogDiscount
     */
    private $instance;

    private function __construct(CatalogDiscount $instance)
    {
        $this->instance = $instance;
    }

    /**
     * Initializes a new catalog discount Builder object.
     */
    public static function init(): self
    {
        return new self(new CatalogDiscount());
    }

    /**
     * Sets name field.
     */
    public function name(?string $value): self
    {
        $this->instance->setName($value);
        return $this;
    }

    /**
     * Unsets name field.
     */
    public function unsetName(): self
    {
        $this->instance->unsetName();
        return $this;
    }

    /**
     * Sets discount type field.
     */
    public function discountType(?string $value): self
    {
        $this->instance->setDiscountType($value);
        return $this;
    }

    /**
     * Sets percentage field.
     */
    public function percentage(?string $value): self
    {
        $this->instance->setPercentage($value);
        return $this;
    }

    /**
     * Unsets percentage field.
     */
    public function unsetPercentage(): self
    {
        $this->instance->unsetPercentage();
        return $this;
    }

    /**
     * Sets amount money field.
     */
    public function amountMoney(?Money $value): self
    {
        $this->instance->setAmountMoney($value);
        return $this;
    }

    /**
     * Sets pin required field.
     */
    public function pinRequired(?bool $value): self
    {
        $this->instance->setPinRequired($value);
        return $this;
    }

    /**
     * Unsets pin required field.
     */
    public function unsetPinRequired(): self
    {
        $this->instance->unsetPinRequired();
        return $this;
    }

    /**
     * Sets label color field.
     */
    public function labelColor(?string $value): self
    {
        $this->instance->setLabelColor($value);
        return $this;
    }

    /**
     * Unsets label color field.
     */
    public function unsetLabelColor(): self
    {
        $this->instance->unsetLabelColor();
        return $this;
    }

    /**
     * Sets modify tax basis field.
     */
    public function modifyTaxBasis(?string $value): self
    {
        $this->instance->setModifyTaxBasis($value);
        return $this;
    }

    /**
     * Sets maximum amount money field.
     */
    public function maximumAmountMoney(?Money $value): self
    {
        $this->instance->setMaximumAmountMoney($value);
        return $this;
    }

    /**
     * Initializes a new catalog discount object.
     */
    public function build(): CatalogDiscount
    {
        return CoreHelper::clone($this->instance);
    }
}