File "ProcessingFeeBuilder.php"

Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/Builders/ProcessingFeeBuilder.php
File size: 1.77 KB
MIME-type: text/x-php
Charset: utf-8

<?php

declare (strict_types=1);
namespace WPForms\Vendor\Square\Models\Builders;

use WPForms\Vendor\Core\Utils\CoreHelper;
use WPForms\Vendor\Square\Models\Money;
use WPForms\Vendor\Square\Models\ProcessingFee;
/**
 * Builder for model ProcessingFee
 *
 * @see ProcessingFee
 */
class ProcessingFeeBuilder
{
    /**
     * @var ProcessingFee
     */
    private $instance;
    private function __construct(ProcessingFee $instance)
    {
        $this->instance = $instance;
    }
    /**
     * Initializes a new Processing Fee Builder object.
     */
    public static function init() : self
    {
        return new self(new ProcessingFee());
    }
    /**
     * Sets effective at field.
     *
     * @param string|null $value
     */
    public function effectiveAt(?string $value) : self
    {
        $this->instance->setEffectiveAt($value);
        return $this;
    }
    /**
     * Unsets effective at field.
     */
    public function unsetEffectiveAt() : self
    {
        $this->instance->unsetEffectiveAt();
        return $this;
    }
    /**
     * Sets type field.
     *
     * @param string|null $value
     */
    public function type(?string $value) : self
    {
        $this->instance->setType($value);
        return $this;
    }
    /**
     * Unsets type field.
     */
    public function unsetType() : self
    {
        $this->instance->unsetType();
        return $this;
    }
    /**
     * Sets amount money field.
     *
     * @param Money|null $value
     */
    public function amountMoney(?Money $value) : self
    {
        $this->instance->setAmountMoney($value);
        return $this;
    }
    /**
     * Initializes a new Processing Fee object.
     */
    public function build() : ProcessingFee
    {
        return CoreHelper::clone($this->instance);
    }
}