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>
132 lines
2.7 KiB
PHP
132 lines
2.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\OrderApplicationContext;
|
|
use PaypalServerSDKLib\Models\PaymentMethodPreference;
|
|
use PaypalServerSDKLib\Models\StoredPaymentSource;
|
|
|
|
/**
|
|
* Builder for model OrderApplicationContext
|
|
*
|
|
* @see OrderApplicationContext
|
|
*/
|
|
class OrderApplicationContextBuilder
|
|
{
|
|
/**
|
|
* @var OrderApplicationContext
|
|
*/
|
|
private $instance;
|
|
|
|
private function __construct(OrderApplicationContext $instance)
|
|
{
|
|
$this->instance = $instance;
|
|
}
|
|
|
|
/**
|
|
* Initializes a new order application context Builder object.
|
|
*/
|
|
public static function init(): self
|
|
{
|
|
return new self(new OrderApplicationContext());
|
|
}
|
|
|
|
/**
|
|
* Sets brand name field.
|
|
*/
|
|
public function brandName(?string $value): self
|
|
{
|
|
$this->instance->setBrandName($value);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Sets locale field.
|
|
*/
|
|
public function locale(?string $value): self
|
|
{
|
|
$this->instance->setLocale($value);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Sets landing page field.
|
|
*/
|
|
public function landingPage(?string $value): self
|
|
{
|
|
$this->instance->setLandingPage($value);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Sets shipping preference field.
|
|
*/
|
|
public function shippingPreference(?string $value): self
|
|
{
|
|
$this->instance->setShippingPreference($value);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Sets user action field.
|
|
*/
|
|
public function userAction(?string $value): self
|
|
{
|
|
$this->instance->setUserAction($value);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Sets payment method field.
|
|
*/
|
|
public function paymentMethod(?PaymentMethodPreference $value): self
|
|
{
|
|
$this->instance->setPaymentMethod($value);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Sets return url field.
|
|
*/
|
|
public function returnUrl(?string $value): self
|
|
{
|
|
$this->instance->setReturnUrl($value);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Sets cancel url field.
|
|
*/
|
|
public function cancelUrl(?string $value): self
|
|
{
|
|
$this->instance->setCancelUrl($value);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Sets stored payment source field.
|
|
*/
|
|
public function storedPaymentSource(?StoredPaymentSource $value): self
|
|
{
|
|
$this->instance->setStoredPaymentSource($value);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Initializes a new order application context object.
|
|
*/
|
|
public function build(): OrderApplicationContext
|
|
{
|
|
return CoreHelper::clone($this->instance);
|
|
}
|
|
}
|