forked from LiveCarta/PayPal-PHP-Server-SDK
* Automated commit message * Automated commit message * Automated commit message * Automated commit message --------- Co-authored-by: PayPalServerSDKs <server-sdks@paypal.com>
59 lines
1.3 KiB
PHP
59 lines
1.3 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\ExperienceContext;
|
|
use PaypalServerSDKLib\Models\TrustlyPaymentRequest;
|
|
|
|
/**
|
|
* Builder for model TrustlyPaymentRequest
|
|
*
|
|
* @see TrustlyPaymentRequest
|
|
*/
|
|
class TrustlyPaymentRequestBuilder
|
|
{
|
|
/**
|
|
* @var TrustlyPaymentRequest
|
|
*/
|
|
private $instance;
|
|
|
|
private function __construct(TrustlyPaymentRequest $instance)
|
|
{
|
|
$this->instance = $instance;
|
|
}
|
|
|
|
/**
|
|
* Initializes a new trustly payment request Builder object.
|
|
*/
|
|
public static function init(string $name, string $countryCode): self
|
|
{
|
|
return new self(new TrustlyPaymentRequest($name, $countryCode));
|
|
}
|
|
|
|
/**
|
|
* Sets experience context field.
|
|
*/
|
|
public function experienceContext(?ExperienceContext $value): self
|
|
{
|
|
$this->instance->setExperienceContext($value);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Initializes a new trustly payment request object.
|
|
*/
|
|
public function build(): TrustlyPaymentRequest
|
|
{
|
|
return CoreHelper::clone($this->instance);
|
|
}
|
|
}
|