File "CreateGiftCardActivityResponseBuilder.php"

Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/Builders/CreateGiftCardActivityResponseBuilder.php
File size: 1.49 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\CreateGiftCardActivityResponse;
use WPForms\Vendor\Square\Models\Error;
use WPForms\Vendor\Square\Models\GiftCardActivity;
/**
 * Builder for model CreateGiftCardActivityResponse
 *
 * @see CreateGiftCardActivityResponse
 */
class CreateGiftCardActivityResponseBuilder
{
    /**
     * @var CreateGiftCardActivityResponse
     */
    private $instance;
    private function __construct(CreateGiftCardActivityResponse $instance)
    {
        $this->instance = $instance;
    }
    /**
     * Initializes a new Create Gift Card Activity Response Builder object.
     */
    public static function init() : self
    {
        return new self(new CreateGiftCardActivityResponse());
    }
    /**
     * Sets errors field.
     *
     * @param Error[]|null $value
     */
    public function errors(?array $value) : self
    {
        $this->instance->setErrors($value);
        return $this;
    }
    /**
     * Sets gift card activity field.
     *
     * @param GiftCardActivity|null $value
     */
    public function giftCardActivity(?GiftCardActivity $value) : self
    {
        $this->instance->setGiftCardActivity($value);
        return $this;
    }
    /**
     * Initializes a new Create Gift Card Activity Response object.
     */
    public function build() : CreateGiftCardActivityResponse
    {
        return CoreHelper::clone($this->instance);
    }
}