File "BulkCreateCustomerDataBuilder.php"
Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/Builders/BulkCreateCustomerDataBuilder.php
File size: 4.81 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\Address;
use WPForms\Vendor\Square\Models\BulkCreateCustomerData;
use WPForms\Vendor\Square\Models\CustomerTaxIds;
/**
* Builder for model BulkCreateCustomerData
*
* @see BulkCreateCustomerData
*/
class BulkCreateCustomerDataBuilder
{
/**
* @var BulkCreateCustomerData
*/
private $instance;
private function __construct(BulkCreateCustomerData $instance)
{
$this->instance = $instance;
}
/**
* Initializes a new Bulk Create Customer Data Builder object.
*/
public static function init() : self
{
return new self(new BulkCreateCustomerData());
}
/**
* Sets given name field.
*
* @param string|null $value
*/
public function givenName(?string $value) : self
{
$this->instance->setGivenName($value);
return $this;
}
/**
* Unsets given name field.
*/
public function unsetGivenName() : self
{
$this->instance->unsetGivenName();
return $this;
}
/**
* Sets family name field.
*
* @param string|null $value
*/
public function familyName(?string $value) : self
{
$this->instance->setFamilyName($value);
return $this;
}
/**
* Unsets family name field.
*/
public function unsetFamilyName() : self
{
$this->instance->unsetFamilyName();
return $this;
}
/**
* Sets company name field.
*
* @param string|null $value
*/
public function companyName(?string $value) : self
{
$this->instance->setCompanyName($value);
return $this;
}
/**
* Unsets company name field.
*/
public function unsetCompanyName() : self
{
$this->instance->unsetCompanyName();
return $this;
}
/**
* Sets nickname field.
*
* @param string|null $value
*/
public function nickname(?string $value) : self
{
$this->instance->setNickname($value);
return $this;
}
/**
* Unsets nickname field.
*/
public function unsetNickname() : self
{
$this->instance->unsetNickname();
return $this;
}
/**
* Sets email address field.
*
* @param string|null $value
*/
public function emailAddress(?string $value) : self
{
$this->instance->setEmailAddress($value);
return $this;
}
/**
* Unsets email address field.
*/
public function unsetEmailAddress() : self
{
$this->instance->unsetEmailAddress();
return $this;
}
/**
* Sets address field.
*
* @param Address|null $value
*/
public function address(?Address $value) : self
{
$this->instance->setAddress($value);
return $this;
}
/**
* Sets phone number field.
*
* @param string|null $value
*/
public function phoneNumber(?string $value) : self
{
$this->instance->setPhoneNumber($value);
return $this;
}
/**
* Unsets phone number field.
*/
public function unsetPhoneNumber() : self
{
$this->instance->unsetPhoneNumber();
return $this;
}
/**
* Sets reference id field.
*
* @param string|null $value
*/
public function referenceId(?string $value) : self
{
$this->instance->setReferenceId($value);
return $this;
}
/**
* Unsets reference id field.
*/
public function unsetReferenceId() : self
{
$this->instance->unsetReferenceId();
return $this;
}
/**
* Sets note field.
*
* @param string|null $value
*/
public function note(?string $value) : self
{
$this->instance->setNote($value);
return $this;
}
/**
* Unsets note field.
*/
public function unsetNote() : self
{
$this->instance->unsetNote();
return $this;
}
/**
* Sets birthday field.
*
* @param string|null $value
*/
public function birthday(?string $value) : self
{
$this->instance->setBirthday($value);
return $this;
}
/**
* Unsets birthday field.
*/
public function unsetBirthday() : self
{
$this->instance->unsetBirthday();
return $this;
}
/**
* Sets tax ids field.
*
* @param CustomerTaxIds|null $value
*/
public function taxIds(?CustomerTaxIds $value) : self
{
$this->instance->setTaxIds($value);
return $this;
}
/**
* Initializes a new Bulk Create Customer Data object.
*/
public function build() : BulkCreateCustomerData
{
return CoreHelper::clone($this->instance);
}
}