1
0

Beta Release 0.5.0 (#3)

* Automated commit message

* Automated commit message

* Automated commit message

* Automated commit message

---------

Co-authored-by: PayPalServerSDKs <server-sdks@paypal.com>
This commit is contained in:
Dani Kirby
2024-09-09 12:10:34 -05:00
committed by GitHub
parent c9cb1ad04a
commit 6b43a4225b
732 changed files with 73569 additions and 1 deletions

View File

@@ -0,0 +1,131 @@
<?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);
}
}