forked from LiveCarta/PayPal-PHP-Server-SDK
86 lines
1.7 KiB
PHP
86 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* PaypalServerSdkLib
|
|
*
|
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
|
*/
|
|
|
|
namespace PaypalServerSdkLib\Models\Builders;
|
|
|
|
use Core\Utils\CoreHelper;
|
|
use PaypalServerSdkLib\Models\BlikOneClickPaymentObject;
|
|
use PaypalServerSdkLib\Models\BlikPaymentObject;
|
|
|
|
/**
|
|
* Builder for model BlikPaymentObject
|
|
*
|
|
* @see BlikPaymentObject
|
|
*/
|
|
class BlikPaymentObjectBuilder
|
|
{
|
|
/**
|
|
* @var BlikPaymentObject
|
|
*/
|
|
private $instance;
|
|
|
|
private function __construct(BlikPaymentObject $instance)
|
|
{
|
|
$this->instance = $instance;
|
|
}
|
|
|
|
/**
|
|
* Initializes a new blik payment object Builder object.
|
|
*/
|
|
public static function init(): self
|
|
{
|
|
return new self(new BlikPaymentObject());
|
|
}
|
|
|
|
/**
|
|
* Sets name field.
|
|
*/
|
|
public function name(?string $value): self
|
|
{
|
|
$this->instance->setName($value);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Sets country code field.
|
|
*/
|
|
public function countryCode(?string $value): self
|
|
{
|
|
$this->instance->setCountryCode($value);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Sets email field.
|
|
*/
|
|
public function email(?string $value): self
|
|
{
|
|
$this->instance->setEmail($value);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Sets one click field.
|
|
*/
|
|
public function oneClick(?BlikOneClickPaymentObject $value): self
|
|
{
|
|
$this->instance->setOneClick($value);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Initializes a new blik payment object object.
|
|
*/
|
|
public function build(): BlikPaymentObject
|
|
{
|
|
return CoreHelper::clone($this->instance);
|
|
}
|
|
}
|