Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Builders
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models\Builders; use WPForms\Vendor\Core\Utils\CoreHelper; use WPForms\Vendor\Square\Models\DeviceCode; use WPForms\Vendor\Square\Models\Error; use WPForms\Vendor\Square\Models\GetDeviceCodeResponse; /** * Builder for model GetDeviceCodeResponse * * @see GetDeviceCodeResponse */ class GetDeviceCodeResponseBuilder { /** * @var GetDeviceCodeResponse */ private $instance; private function __construct(GetDeviceCodeResponse $instance) { $this->instance = $instance; } /** * Initializes a new Get Device Code Response Builder object. */ public static function init() : self { return new self(new GetDeviceCodeResponse()); } /** * Sets errors field. * * @param Error[]|null $value */ public function errors(?array $value) : self { $this->instance->setErrors($value); return $this; } /** * Sets device code field. * * @param DeviceCode|null $value */ public function deviceCode(?DeviceCode $value) : self { $this->instance->setDeviceCode($value); return $this; } /** * Initializes a new Get Device Code Response object. */ public function build() : GetDeviceCodeResponse { return CoreHelper::clone($this->instance); } }