forked from LiveCarta/PayPal-PHP-Server-SDK
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
462eda52e0 | ||
|
|
f6cd8b4d4f |
36
README.md
36
README.md
@@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
# Getting Started with Paypal Server SDK
|
# Getting Started with paypal server sdk
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
||||||
@@ -12,23 +12,23 @@ Find out more here: [https://developer.paypal.com/docs/api/orders/v2/](https://d
|
|||||||
Run the following command to install the package and automatically add the dependency to your composer.json file:
|
Run the following command to install the package and automatically add the dependency to your composer.json file:
|
||||||
|
|
||||||
```php
|
```php
|
||||||
composer require "paypal/paypal-server-sdk:0.5.1"
|
composer require "paypal/paypal-server-sdk:0.5.0"
|
||||||
```
|
```
|
||||||
|
|
||||||
Or add it to the composer.json file manually as given below:
|
Or add it to the composer.json file manually as given below:
|
||||||
|
|
||||||
```php
|
```php
|
||||||
"require": {
|
"require": {
|
||||||
"paypal/paypal-server-sdk": "0.5.1"
|
"paypal/paypal-server-sdk": "0.5.0"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also view the package at:
|
You can also view the package at:
|
||||||
https://packagist.org/packages/paypal/paypal-server-sdk#0.5.1
|
https://packagist.org/packages/paypal/paypal-server-sdk#0.5.0
|
||||||
|
|
||||||
## Initialize the API Client
|
## Initialize the API Client
|
||||||
|
|
||||||
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.1/doc/client.md)
|
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.0/doc/client.md)
|
||||||
|
|
||||||
The following parameters are configurable for the API Client:
|
The following parameters are configurable for the API Client:
|
||||||
|
|
||||||
@@ -44,13 +44,13 @@ The following parameters are configurable for the API Client:
|
|||||||
| `retryOnTimeout` | `bool` | Whether to retry on request timeout.<br>*Default*: `true` |
|
| `retryOnTimeout` | `bool` | Whether to retry on request timeout.<br>*Default*: `true` |
|
||||||
| `httpStatusCodesToRetry` | `array` | Http status codes to retry against.<br>*Default*: `408, 413, 429, 500, 502, 503, 504, 521, 522, 524` |
|
| `httpStatusCodesToRetry` | `array` | Http status codes to retry against.<br>*Default*: `408, 413, 429, 500, 502, 503, 504, 521, 522, 524` |
|
||||||
| `httpMethodsToRetry` | `array` | Http methods to retry against.<br>*Default*: `'GET', 'PUT'` |
|
| `httpMethodsToRetry` | `array` | Http methods to retry against.<br>*Default*: `'GET', 'PUT'` |
|
||||||
| `loggingConfiguration` | [`LoggingConfigurationBuilder`](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.1/doc/logging-configuration-builder.md) | Represents the logging configurations for API calls |
|
| `loggingConfiguration` | [`LoggingConfigurationBuilder`](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.0/doc/logging-configuration-builder.md) | Represents the logging configurations for API calls |
|
||||||
| `clientCredentialsAuth` | [`ClientCredentialsAuth`](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.1/doc/auth/oauth-2-client-credentials-grant.md) | The Credentials Setter for OAuth 2 Client Credentials Grant |
|
| `clientCredentialsAuth` | [`ClientCredentialsAuth`](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.0/doc/auth/oauth-2-client-credentials-grant.md) | The Credentials Setter for OAuth 2 Client Credentials Grant |
|
||||||
|
|
||||||
The API client can be initialized as follows:
|
The API client can be initialized as follows:
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$client = PaypalServerSDKClientBuilder::init()
|
$client = PaypalServerSdkClientBuilder::init()
|
||||||
->clientCredentialsAuthCredentials(
|
->clientCredentialsAuthCredentials(
|
||||||
ClientCredentialsAuthCredentialsBuilder::init(
|
ClientCredentialsAuthCredentialsBuilder::init(
|
||||||
'OAuthClientId',
|
'OAuthClientId',
|
||||||
@@ -90,20 +90,20 @@ The SDK can be configured to use a different environment for making API calls. A
|
|||||||
|
|
||||||
This API uses the following authentication schemes.
|
This API uses the following authentication schemes.
|
||||||
|
|
||||||
* [`Oauth2 (OAuth 2 Client Credentials Grant)`](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.1/doc/auth/oauth-2-client-credentials-grant.md)
|
* [`Oauth2 (OAuth 2 Client Credentials Grant)`](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.0/doc/auth/oauth-2-client-credentials-grant.md)
|
||||||
|
|
||||||
## List of APIs
|
## List of APIs
|
||||||
|
|
||||||
* [Orders](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.1/doc/controllers/orders.md)
|
* [Orders](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.0/doc/controllers/orders.md)
|
||||||
* [Payments](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.1/doc/controllers/payments.md)
|
* [Payments](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.0/doc/controllers/payments.md)
|
||||||
* [Vault](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.1/doc/controllers/vault.md)
|
* [Vault](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.0/doc/controllers/vault.md)
|
||||||
|
|
||||||
## Classes Documentation
|
## Classes Documentation
|
||||||
|
|
||||||
* [ApiException](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.1/doc/api-exception.md)
|
* [ApiException](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.0/doc/api-exception.md)
|
||||||
* [HttpRequest](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.1/doc/http-request.md)
|
* [HttpRequest](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.0/doc/http-request.md)
|
||||||
* [HttpResponse](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.1/doc/http-response.md)
|
* [HttpResponse](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.0/doc/http-response.md)
|
||||||
* [LoggingConfigurationBuilder](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.1/doc/logging-configuration-builder.md)
|
* [LoggingConfigurationBuilder](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.0/doc/logging-configuration-builder.md)
|
||||||
* [RequestLoggingConfigurationBuilder](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.1/doc/request-logging-configuration-builder.md)
|
* [RequestLoggingConfigurationBuilder](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.0/doc/request-logging-configuration-builder.md)
|
||||||
* [ResponseLoggingConfigurationBuilder](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.1/doc/response-logging-configuration-builder.md)
|
* [ResponseLoggingConfigurationBuilder](https://www.github.com/paypal/PayPal-PHP-Server-SDK/tree/0.5.0/doc/response-logging-configuration-builder.md)
|
||||||
|
|
||||||
|
|||||||
@@ -22,12 +22,12 @@
|
|||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"PaypalServerSDKLib\\": "src/"
|
"PaypalServerSdkLib\\": "src/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"autoload-dev": {
|
"autoload-dev": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"PaypalServerSDKLib\\Tests\\": "tests/"
|
"PaypalServerSdkLib\\Tests\\": "tests/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ Documentation for accessing and setting credentials for Oauth2.
|
|||||||
You must initialize the client with *OAuth 2.0 Client Credentials Grant* credentials as shown in the following code snippet. This will fetch the OAuth token automatically when any of the endpoints, requiring *OAuth 2.0 Client Credentials Grant* autentication, are called.
|
You must initialize the client with *OAuth 2.0 Client Credentials Grant* credentials as shown in the following code snippet. This will fetch the OAuth token automatically when any of the endpoints, requiring *OAuth 2.0 Client Credentials Grant* autentication, are called.
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$client = PaypalServerSDKClientBuilder::init()
|
$client = PaypalServerSdkClientBuilder::init()
|
||||||
->clientCredentialsAuthCredentials(
|
->clientCredentialsAuthCredentials(
|
||||||
ClientCredentialsAuthCredentialsBuilder::init(
|
ClientCredentialsAuthCredentialsBuilder::init(
|
||||||
'OAuthClientId',
|
'OAuthClientId',
|
||||||
@@ -46,7 +46,7 @@ Your application can also manually provide an OAuthToken using the setter `oAuth
|
|||||||
Whenever the OAuth Token gets updated, the provided callback implementation will be executed. For instance, you may use it to store your access token whenever it gets updated.
|
Whenever the OAuth Token gets updated, the provided callback implementation will be executed. For instance, you may use it to store your access token whenever it gets updated.
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$client = PaypalServerSDKClientBuilder::init()
|
$client = PaypalServerSdkClientBuilder::init()
|
||||||
->clientCredentialsAuthCredentials(
|
->clientCredentialsAuthCredentials(
|
||||||
ClientCredentialsAuthCredentialsBuilder::init(
|
ClientCredentialsAuthCredentialsBuilder::init(
|
||||||
'OAuthClientId',
|
'OAuthClientId',
|
||||||
@@ -68,7 +68,7 @@ $client = PaypalServerSDKClientBuilder::init()
|
|||||||
To authorize a client using a stored access token, set up the `oAuthTokenProvider` in `ClientCredentialsAuthCredentialsBuilder` along with the other auth parameters before creating the client:
|
To authorize a client using a stored access token, set up the `oAuthTokenProvider` in `ClientCredentialsAuthCredentialsBuilder` along with the other auth parameters before creating the client:
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$client = PaypalServerSDKClientBuilder::init()
|
$client = PaypalServerSdkClientBuilder::init()
|
||||||
->clientCredentialsAuthCredentials(
|
->clientCredentialsAuthCredentials(
|
||||||
ClientCredentialsAuthCredentialsBuilder::init(
|
ClientCredentialsAuthCredentialsBuilder::init(
|
||||||
'OAuthClientId',
|
'OAuthClientId',
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ The following parameters are configurable for the API Client:
|
|||||||
The API client can be initialized as follows:
|
The API client can be initialized as follows:
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$client = PaypalServerSDKClientBuilder::init()
|
$client = PaypalServerSdkClientBuilder::init()
|
||||||
->clientCredentialsAuthCredentials(
|
->clientCredentialsAuthCredentials(
|
||||||
ClientCredentialsAuthCredentialsBuilder::init(
|
ClientCredentialsAuthCredentialsBuilder::init(
|
||||||
'OAuthClientId',
|
'OAuthClientId',
|
||||||
@@ -46,7 +46,7 @@ API calls return an `ApiResponse` object that includes the following fields:
|
|||||||
| `getHeaders` | Headers of the HTTP response as a Hash |
|
| `getHeaders` | Headers of the HTTP response as a Hash |
|
||||||
| `getResult` | The deserialized body of the HTTP response as a String |
|
| `getResult` | The deserialized body of the HTTP response as a String |
|
||||||
|
|
||||||
## Paypal Server SDK Client
|
## paypal server sdk Client
|
||||||
|
|
||||||
The gateway for the SDK. This class acts as a factory for the Controllers and also holds the configuration of the SDK.
|
The gateway for the SDK. This class acts as a factory for the Controllers and also holds the configuration of the SDK.
|
||||||
|
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ function ordersCreate(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`Order`](../../doc/models/order.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`Order`](../../doc/models/order.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -92,7 +92,7 @@ function ordersGet(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`Order`](../../doc/models/order.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`Order`](../../doc/models/order.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -130,7 +130,7 @@ function ordersPatch(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance.
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance.
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -177,7 +177,7 @@ function ordersConfirm(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`Order`](../../doc/models/order.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`Order`](../../doc/models/order.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -227,7 +227,7 @@ function ordersAuthorize(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`OrderAuthorizeResponse`](../../doc/models/order-authorize-response.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`OrderAuthorizeResponse`](../../doc/models/order-authorize-response.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -274,7 +274,7 @@ function ordersCapture(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`Order`](../../doc/models/order.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`Order`](../../doc/models/order.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -318,7 +318,7 @@ function ordersTrackCreate(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`Order`](../../doc/models/order.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`Order`](../../doc/models/order.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -365,7 +365,7 @@ function ordersTrackersPatch(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance.
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance.
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ function authorizationsGet(string $authorizationId): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`PaymentAuthorization`](../../doc/models/payment-authorization.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`PaymentAuthorization`](../../doc/models/payment-authorization.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -77,7 +77,7 @@ function authorizationsCapture(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`CapturedPayment`](../../doc/models/captured-payment.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`CapturedPayment`](../../doc/models/captured-payment.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -126,7 +126,7 @@ function authorizationsReauthorize(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`PaymentAuthorization`](../../doc/models/payment-authorization.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`PaymentAuthorization`](../../doc/models/payment-authorization.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -170,7 +170,7 @@ function authorizationsVoid(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`?PaymentAuthorization`](../../doc/models/payment-authorization.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`?PaymentAuthorization`](../../doc/models/payment-authorization.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -213,7 +213,7 @@ function capturesGet(string $captureId): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`CapturedPayment`](../../doc/models/captured-payment.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`CapturedPayment`](../../doc/models/captured-payment.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -254,7 +254,7 @@ function capturesRefund(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`Refund`](../../doc/models/refund.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`Refund`](../../doc/models/refund.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -297,7 +297,7 @@ function refundsGet(string $refundId): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`Refund`](../../doc/models/refund.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`Refund`](../../doc/models/refund.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ function paymentTokensCreate(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`PaymentTokenResponse`](../../doc/models/payment-token-response.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`PaymentTokenResponse`](../../doc/models/payment-token-response.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -82,7 +82,7 @@ function customerPaymentTokensGet(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`CustomerVaultPaymentTokensResponse`](../../doc/models/customer-vault-payment-tokens-response.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`CustomerVaultPaymentTokensResponse`](../../doc/models/customer-vault-payment-tokens-response.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -122,7 +122,7 @@ function paymentTokensGet(string $id): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`PaymentTokenResponse`](../../doc/models/payment-token-response.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`PaymentTokenResponse`](../../doc/models/payment-token-response.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -158,7 +158,7 @@ function paymentTokensDelete(string $id): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance.
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance.
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -194,7 +194,7 @@ function setupTokensCreate(array $options): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`SetupTokenResponse`](../../doc/models/setup-token-response.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`SetupTokenResponse`](../../doc/models/setup-token-response.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
@@ -235,7 +235,7 @@ function setupTokensGet(string $id): ApiResponse
|
|||||||
|
|
||||||
## Response Type
|
## Response Type
|
||||||
|
|
||||||
This method returns a `PaypalServerSDKLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`SetupTokenResponse`](../../doc/models/setup-token-response.md).
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`SetupTokenResponse`](../../doc/models/setup-token-response.md).
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
||||||
|
|||||||
@@ -19,25 +19,25 @@ Represents the logging configurations for API calls. Create instance using `Logg
|
|||||||
|
|
||||||
In order to provide custom logger, any implementation of the `Psr\Log\LoggerInterface` can be used so that you can override the `log` behavior and provide its instance directly in the SDK client initialization.
|
In order to provide custom logger, any implementation of the `Psr\Log\LoggerInterface` can be used so that you can override the `log` behavior and provide its instance directly in the SDK client initialization.
|
||||||
|
|
||||||
The following example uses `Monolog\Logger` implementation of `Psr\Log\LoggerInterface` for PaypalServerSDKClient initialization.
|
The following example uses `Monolog\Logger` implementation of `Psr\Log\LoggerInterface` for PaypalServerSdkClient initialization.
|
||||||
|
|
||||||
```php
|
```php
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
use PaypalServerSDKLib\PaypalServerSDKClientBuilder;
|
use PaypalServerSdkLib\PaypalServerSdkClientBuilder;
|
||||||
use PaypalServerSDKLib\Logging\LoggingConfigurationBuilder;
|
use PaypalServerSdkLib\Logging\LoggingConfigurationBuilder;
|
||||||
use PaypalServerSDKLib\Logging\RequestLoggingConfigurationBuilder;
|
use PaypalServerSdkLib\Logging\RequestLoggingConfigurationBuilder;
|
||||||
use PaypalServerSDKLib\Logging\ResponseLoggingConfigurationBuilder;
|
use PaypalServerSdkLib\Logging\ResponseLoggingConfigurationBuilder;
|
||||||
use Psr\Log\LogLevel;
|
use Psr\Log\LogLevel;
|
||||||
use Monolog\Logger;
|
use Monolog\Logger;
|
||||||
use Monolog\Handler\StreamHandler;
|
use Monolog\Handler\StreamHandler;
|
||||||
|
|
||||||
// create a log channel
|
// create a log channel
|
||||||
$logger = new Logger('PaypalServerSDK');
|
$logger = new Logger('PaypalServerSdk');
|
||||||
$logger->pushHandler(new StreamHandler(__DIR__ . '/api_data.log'));
|
$logger->pushHandler(new StreamHandler(__DIR__ . '/api_data.log'));
|
||||||
|
|
||||||
// initialize the sdk client using this logger
|
// initialize the sdk client using this logger
|
||||||
$client = PaypalServerSDKClientBuilder::init()
|
$client = PaypalServerSdkClientBuilder::init()
|
||||||
->loggingConfiguration(
|
->loggingConfiguration(
|
||||||
LoggingConfigurationBuilder::init()
|
LoggingConfigurationBuilder::init()
|
||||||
->logger($logger)
|
->logger($logger)
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib;
|
namespace PaypalServerSdkLib;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use Core\Utils\JsonHelper;
|
use Core\Utils\JsonHelper;
|
||||||
@@ -28,7 +28,7 @@ class ApiHelper
|
|||||||
public static function getJsonHelper(): JsonHelper
|
public static function getJsonHelper(): JsonHelper
|
||||||
{
|
{
|
||||||
if (self::$jsonHelper == null) {
|
if (self::$jsonHelper == null) {
|
||||||
self::$jsonHelper = new JsonHelper([], [], null, 'PaypalServerSDKLib\\Models');
|
self::$jsonHelper = new JsonHelper([], [], null, 'PaypalServerSdkLib\\Models');
|
||||||
}
|
}
|
||||||
return self::$jsonHelper;
|
return self::$jsonHelper;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Authentication;
|
namespace PaypalServerSdkLib\Authentication;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\OAuthToken;
|
use PaypalServerSdkLib\Models\OAuthToken;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Utility class for initializing ClientCredentialsAuth security credentials.
|
* Utility class for initializing ClientCredentialsAuth security credentials.
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Authentication;
|
namespace PaypalServerSdkLib\Authentication;
|
||||||
|
|
||||||
use Closure;
|
use Closure;
|
||||||
use Exception;
|
use Exception;
|
||||||
@@ -18,10 +18,10 @@ use Core\Client;
|
|||||||
use Core\Request\Parameters\HeaderParam;
|
use Core\Request\Parameters\HeaderParam;
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use InvalidArgumentException;
|
use InvalidArgumentException;
|
||||||
use PaypalServerSDKLib\Models\OAuthToken;
|
use PaypalServerSdkLib\Models\OAuthToken;
|
||||||
use PaypalServerSDKLib\Controllers\OAuthAuthorizationController;
|
use PaypalServerSdkLib\Controllers\OAuthAuthorizationController;
|
||||||
use PaypalServerSDKLib\ConfigurationDefaults;
|
use PaypalServerSdkLib\ConfigurationDefaults;
|
||||||
use PaypalServerSDKLib\ClientCredentialsAuth;
|
use PaypalServerSdkLib\ClientCredentialsAuth;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Utility class for OAuth 2 authorization and token management
|
* Utility class for OAuth 2 authorization and token management
|
||||||
|
|||||||
@@ -3,14 +3,14 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib;
|
namespace PaypalServerSdkLib;
|
||||||
|
|
||||||
use PaypalServerSDKLib\Models\OAuthToken;
|
use PaypalServerSdkLib\Models\OAuthToken;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface for defining the behavior of Authentication.
|
* Interface for defining the behavior of Authentication.
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib;
|
namespace PaypalServerSdkLib;
|
||||||
|
|
||||||
use Psr\Log\LogLevel;
|
use Psr\Log\LogLevel;
|
||||||
|
|
||||||
|
|||||||
@@ -3,16 +3,16 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib;
|
namespace PaypalServerSdkLib;
|
||||||
|
|
||||||
use CoreInterfaces\Http\HttpConfigurations;
|
use CoreInterfaces\Http\HttpConfigurations;
|
||||||
use PaypalServerSDKLib\Authentication\ClientCredentialsAuthCredentialsBuilder;
|
use PaypalServerSdkLib\Authentication\ClientCredentialsAuthCredentialsBuilder;
|
||||||
use PaypalServerSDKLib\Logging\LoggingConfigurationBuilder;
|
use PaypalServerSdkLib\Logging\LoggingConfigurationBuilder;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An interface for all configuration parameters required by the SDK.
|
* An interface for all configuration parameters required by the SDK.
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Controllers;
|
namespace PaypalServerSdkLib\Controllers;
|
||||||
|
|
||||||
use Core\ApiCall;
|
use Core\ApiCall;
|
||||||
use Core\Client;
|
use Core\Client;
|
||||||
|
|||||||
@@ -3,21 +3,21 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Controllers;
|
namespace PaypalServerSdkLib\Controllers;
|
||||||
|
|
||||||
use Core\Request\Parameters\AdditionalFormParams;
|
use Core\Request\Parameters\AdditionalFormParams;
|
||||||
use Core\Request\Parameters\FormParam;
|
use Core\Request\Parameters\FormParam;
|
||||||
use Core\Request\Parameters\HeaderParam;
|
use Core\Request\Parameters\HeaderParam;
|
||||||
use Core\Response\Types\ErrorType;
|
use Core\Response\Types\ErrorType;
|
||||||
use CoreInterfaces\Core\Request\RequestMethod;
|
use CoreInterfaces\Core\Request\RequestMethod;
|
||||||
use PaypalServerSDKLib\Exceptions\OAuthProviderException;
|
use PaypalServerSdkLib\Exceptions\OAuthProviderException;
|
||||||
use PaypalServerSDKLib\Http\ApiResponse;
|
use PaypalServerSdkLib\Http\ApiResponse;
|
||||||
use PaypalServerSDKLib\Models\OAuthToken;
|
use PaypalServerSdkLib\Models\OAuthToken;
|
||||||
|
|
||||||
class OAuthAuthorizationController extends BaseController
|
class OAuthAuthorizationController extends BaseController
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Controllers;
|
namespace PaypalServerSdkLib\Controllers;
|
||||||
|
|
||||||
use Core\Request\Parameters\BodyParam;
|
use Core\Request\Parameters\BodyParam;
|
||||||
use Core\Request\Parameters\HeaderParam;
|
use Core\Request\Parameters\HeaderParam;
|
||||||
@@ -16,10 +16,10 @@ use Core\Request\Parameters\QueryParam;
|
|||||||
use Core\Request\Parameters\TemplateParam;
|
use Core\Request\Parameters\TemplateParam;
|
||||||
use Core\Response\Types\ErrorType;
|
use Core\Response\Types\ErrorType;
|
||||||
use CoreInterfaces\Core\Request\RequestMethod;
|
use CoreInterfaces\Core\Request\RequestMethod;
|
||||||
use PaypalServerSDKLib\Exceptions\ErrorException;
|
use PaypalServerSdkLib\Exceptions\ErrorException;
|
||||||
use PaypalServerSDKLib\Http\ApiResponse;
|
use PaypalServerSdkLib\Http\ApiResponse;
|
||||||
use PaypalServerSDKLib\Models\Order;
|
use PaypalServerSdkLib\Models\Order;
|
||||||
use PaypalServerSDKLib\Models\OrderAuthorizeResponse;
|
use PaypalServerSdkLib\Models\OrderAuthorizeResponse;
|
||||||
|
|
||||||
class OrdersController extends BaseController
|
class OrdersController extends BaseController
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,23 +3,23 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Controllers;
|
namespace PaypalServerSdkLib\Controllers;
|
||||||
|
|
||||||
use Core\Request\Parameters\BodyParam;
|
use Core\Request\Parameters\BodyParam;
|
||||||
use Core\Request\Parameters\HeaderParam;
|
use Core\Request\Parameters\HeaderParam;
|
||||||
use Core\Request\Parameters\TemplateParam;
|
use Core\Request\Parameters\TemplateParam;
|
||||||
use Core\Response\Types\ErrorType;
|
use Core\Response\Types\ErrorType;
|
||||||
use CoreInterfaces\Core\Request\RequestMethod;
|
use CoreInterfaces\Core\Request\RequestMethod;
|
||||||
use PaypalServerSDKLib\Exceptions\ErrorException;
|
use PaypalServerSdkLib\Exceptions\ErrorException;
|
||||||
use PaypalServerSDKLib\Http\ApiResponse;
|
use PaypalServerSdkLib\Http\ApiResponse;
|
||||||
use PaypalServerSDKLib\Models\CapturedPayment;
|
use PaypalServerSdkLib\Models\CapturedPayment;
|
||||||
use PaypalServerSDKLib\Models\PaymentAuthorization;
|
use PaypalServerSdkLib\Models\PaymentAuthorization;
|
||||||
use PaypalServerSDKLib\Models\Refund;
|
use PaypalServerSdkLib\Models\Refund;
|
||||||
|
|
||||||
class PaymentsController extends BaseController
|
class PaymentsController extends BaseController
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Controllers;
|
namespace PaypalServerSdkLib\Controllers;
|
||||||
|
|
||||||
use Core\Request\Parameters\BodyParam;
|
use Core\Request\Parameters\BodyParam;
|
||||||
use Core\Request\Parameters\HeaderParam;
|
use Core\Request\Parameters\HeaderParam;
|
||||||
@@ -16,11 +16,11 @@ use Core\Request\Parameters\QueryParam;
|
|||||||
use Core\Request\Parameters\TemplateParam;
|
use Core\Request\Parameters\TemplateParam;
|
||||||
use Core\Response\Types\ErrorType;
|
use Core\Response\Types\ErrorType;
|
||||||
use CoreInterfaces\Core\Request\RequestMethod;
|
use CoreInterfaces\Core\Request\RequestMethod;
|
||||||
use PaypalServerSDKLib\Exceptions\ErrorException;
|
use PaypalServerSdkLib\Exceptions\ErrorException;
|
||||||
use PaypalServerSDKLib\Http\ApiResponse;
|
use PaypalServerSdkLib\Http\ApiResponse;
|
||||||
use PaypalServerSDKLib\Models\CustomerVaultPaymentTokensResponse;
|
use PaypalServerSdkLib\Models\CustomerVaultPaymentTokensResponse;
|
||||||
use PaypalServerSDKLib\Models\PaymentTokenResponse;
|
use PaypalServerSdkLib\Models\PaymentTokenResponse;
|
||||||
use PaypalServerSDKLib\Models\SetupTokenResponse;
|
use PaypalServerSdkLib\Models\SetupTokenResponse;
|
||||||
|
|
||||||
class VaultController extends BaseController
|
class VaultController extends BaseController
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib;
|
namespace PaypalServerSdkLib;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Environments available for API
|
* Environments available for API
|
||||||
|
|||||||
@@ -3,16 +3,16 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Exceptions;
|
namespace PaypalServerSdkLib\Exceptions;
|
||||||
|
|
||||||
use CoreInterfaces\Sdk\ExceptionInterface;
|
use CoreInterfaces\Sdk\ExceptionInterface;
|
||||||
use PaypalServerSDKLib\Http\HttpResponse;
|
use PaypalServerSdkLib\Http\HttpResponse;
|
||||||
use PaypalServerSDKLib\Http\HttpRequest;
|
use PaypalServerSdkLib\Http\HttpRequest;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Thrown when there is a network error or HTTP response status code is not okay.
|
* Thrown when there is a network error or HTTP response status code is not okay.
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Exceptions;
|
namespace PaypalServerSdkLib\Exceptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The error details.
|
* The error details.
|
||||||
@@ -31,27 +31,27 @@ class ErrorException extends ApiException
|
|||||||
private $debugId;
|
private $debugId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var \PaypalServerSDKLib\Models\ErrorDetails[]|null
|
* @var \PaypalServerSdkLib\Models\ErrorDetails[]|null
|
||||||
*/
|
*/
|
||||||
private $details;
|
private $details;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var \PaypalServerSDKLib\Models\LinkDescription[]|null
|
* @var \PaypalServerSdkLib\Models\LinkDescription[]|null
|
||||||
*/
|
*/
|
||||||
private $links;
|
private $links;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $reason
|
* @param string $reason
|
||||||
* @param \PaypalServerSDKLib\Http\HttpRequest $request
|
* @param \PaypalServerSdkLib\Http\HttpRequest $request
|
||||||
* @param \PaypalServerSDKLib\Http\HttpResponse $response
|
* @param \PaypalServerSdkLib\Http\HttpResponse $response
|
||||||
* @param string $name
|
* @param string $name
|
||||||
* @param string $messageProperty
|
* @param string $messageProperty
|
||||||
* @param string $debugId
|
* @param string $debugId
|
||||||
*/
|
*/
|
||||||
public function __construct(
|
public function __construct(
|
||||||
string $reason,
|
string $reason,
|
||||||
\PaypalServerSDKLib\Http\HttpRequest $request,
|
\PaypalServerSdkLib\Http\HttpRequest $request,
|
||||||
\PaypalServerSDKLib\Http\HttpResponse $response,
|
\PaypalServerSdkLib\Http\HttpResponse $response,
|
||||||
string $name,
|
string $name,
|
||||||
string $messageProperty,
|
string $messageProperty,
|
||||||
string $debugId
|
string $debugId
|
||||||
@@ -129,7 +129,7 @@ class ErrorException extends ApiException
|
|||||||
* Returns Details.
|
* Returns Details.
|
||||||
* An array of additional details about the error.
|
* An array of additional details about the error.
|
||||||
*
|
*
|
||||||
* @return \PaypalServerSDKLib\Models\ErrorDetails[]|null
|
* @return \PaypalServerSdkLib\Models\ErrorDetails[]|null
|
||||||
*/
|
*/
|
||||||
public function getDetails(): ?array
|
public function getDetails(): ?array
|
||||||
{
|
{
|
||||||
@@ -142,7 +142,7 @@ class ErrorException extends ApiException
|
|||||||
*
|
*
|
||||||
* @maps details
|
* @maps details
|
||||||
*
|
*
|
||||||
* @param \PaypalServerSDKLib\Models\ErrorDetails[]|null $details
|
* @param \PaypalServerSdkLib\Models\ErrorDetails[]|null $details
|
||||||
*/
|
*/
|
||||||
public function setDetails(?array $details): void
|
public function setDetails(?array $details): void
|
||||||
{
|
{
|
||||||
@@ -153,7 +153,7 @@ class ErrorException extends ApiException
|
|||||||
* Returns Links.
|
* Returns Links.
|
||||||
* An array of request-related [HATEOAS links](/api/rest/responses/#hateoas-links).
|
* An array of request-related [HATEOAS links](/api/rest/responses/#hateoas-links).
|
||||||
*
|
*
|
||||||
* @return \PaypalServerSDKLib\Models\LinkDescription[]|null
|
* @return \PaypalServerSdkLib\Models\LinkDescription[]|null
|
||||||
*/
|
*/
|
||||||
public function getLinks(): ?array
|
public function getLinks(): ?array
|
||||||
{
|
{
|
||||||
@@ -166,7 +166,7 @@ class ErrorException extends ApiException
|
|||||||
*
|
*
|
||||||
* @maps links
|
* @maps links
|
||||||
*
|
*
|
||||||
* @param \PaypalServerSDKLib\Models\LinkDescription[]|null $links
|
* @param \PaypalServerSdkLib\Models\LinkDescription[]|null $links
|
||||||
*/
|
*/
|
||||||
public function setLinks(?array $links): void
|
public function setLinks(?array $links): void
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Exceptions;
|
namespace PaypalServerSdkLib\Exceptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* OAuth 2 Authorization endpoint exception.
|
* OAuth 2 Authorization endpoint exception.
|
||||||
@@ -32,14 +32,14 @@ class OAuthProviderException extends ApiException
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $reason
|
* @param string $reason
|
||||||
* @param \PaypalServerSDKLib\Http\HttpRequest $request
|
* @param \PaypalServerSdkLib\Http\HttpRequest $request
|
||||||
* @param \PaypalServerSDKLib\Http\HttpResponse $response
|
* @param \PaypalServerSdkLib\Http\HttpResponse $response
|
||||||
* @param string $error
|
* @param string $error
|
||||||
*/
|
*/
|
||||||
public function __construct(
|
public function __construct(
|
||||||
string $reason,
|
string $reason,
|
||||||
\PaypalServerSDKLib\Http\HttpRequest $request,
|
\PaypalServerSdkLib\Http\HttpRequest $request,
|
||||||
\PaypalServerSDKLib\Http\HttpResponse $response,
|
\PaypalServerSdkLib\Http\HttpResponse $response,
|
||||||
string $error
|
string $error
|
||||||
) {
|
) {
|
||||||
parent::__construct($reason, $request, $response);
|
parent::__construct($reason, $request, $response);
|
||||||
@@ -61,7 +61,7 @@ class OAuthProviderException extends ApiException
|
|||||||
*
|
*
|
||||||
* @required
|
* @required
|
||||||
* @maps error
|
* @maps error
|
||||||
* @factory \PaypalServerSDKLib\Models\OAuthProviderError::checkValue
|
* @factory \PaypalServerSdkLib\Models\OAuthProviderError::checkValue
|
||||||
*/
|
*/
|
||||||
public function setError(string $error): void
|
public function setError(string $error): void
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Http;
|
namespace PaypalServerSdkLib\Http;
|
||||||
|
|
||||||
use Core\Types\Sdk\CoreApiResponse;
|
use Core\Types\Sdk\CoreApiResponse;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Http;
|
namespace PaypalServerSdkLib\Http;
|
||||||
|
|
||||||
use Core\Types\Sdk\CoreCallback;
|
use Core\Types\Sdk\CoreCallback;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Http;
|
namespace PaypalServerSdkLib\Http;
|
||||||
|
|
||||||
use Core\Types\Sdk\CoreContext;
|
use Core\Types\Sdk\CoreContext;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Http;
|
namespace PaypalServerSdkLib\Http;
|
||||||
|
|
||||||
use CoreInterfaces\Core\Request\RequestMethod;
|
use CoreInterfaces\Core\Request\RequestMethod;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Http;
|
namespace PaypalServerSdkLib\Http;
|
||||||
|
|
||||||
use Core\Types\Sdk\CoreRequest;
|
use Core\Types\Sdk\CoreRequest;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Http;
|
namespace PaypalServerSdkLib\Http;
|
||||||
|
|
||||||
use Core\Types\Sdk\CoreResponse;
|
use Core\Types\Sdk\CoreResponse;
|
||||||
|
|
||||||
|
|||||||
@@ -3,14 +3,14 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Logging;
|
namespace PaypalServerSdkLib\Logging;
|
||||||
|
|
||||||
use PaypalServerSDKLib\ConfigurationDefaults;
|
use PaypalServerSdkLib\ConfigurationDefaults;
|
||||||
use Core\Logger\Configuration\LoggingConfiguration;
|
use Core\Logger\Configuration\LoggingConfiguration;
|
||||||
use Core\Logger\ConsoleLogger;
|
use Core\Logger\ConsoleLogger;
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
|
|||||||
@@ -3,14 +3,14 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Logging;
|
namespace PaypalServerSdkLib\Logging;
|
||||||
|
|
||||||
use PaypalServerSDKLib\ConfigurationDefaults;
|
use PaypalServerSdkLib\ConfigurationDefaults;
|
||||||
use Core\Logger\Configuration\RequestConfiguration;
|
use Core\Logger\Configuration\RequestConfiguration;
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
|
|
||||||
|
|||||||
@@ -3,14 +3,14 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Logging;
|
namespace PaypalServerSdkLib\Logging;
|
||||||
|
|
||||||
use PaypalServerSDKLib\ConfigurationDefaults;
|
use PaypalServerSdkLib\ConfigurationDefaults;
|
||||||
use Core\Logger\Configuration\ResponseConfiguration;
|
use Core\Logger\Configuration\ResponseConfiguration;
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,12 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models;
|
namespace PaypalServerSdkLib\Models;
|
||||||
|
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\ActivityTimestamps;
|
use PaypalServerSdkLib\Models\ActivityTimestamps;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model ActivityTimestamps
|
* Builder for model ActivityTimestamps
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\Address;
|
use PaypalServerSdkLib\Models\Address;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model Address
|
* Builder for model Address
|
||||||
|
|||||||
@@ -3,17 +3,17 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\AddressDetails;
|
use PaypalServerSdkLib\Models\AddressDetails;
|
||||||
use PaypalServerSDKLib\Models\Name;
|
use PaypalServerSdkLib\Models\Name;
|
||||||
use PaypalServerSDKLib\Models\Phone;
|
use PaypalServerSdkLib\Models\Phone;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model AddressDetails
|
* Builder for model AddressDetails
|
||||||
|
|||||||
@@ -3,16 +3,16 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\AmountBreakdown;
|
use PaypalServerSdkLib\Models\AmountBreakdown;
|
||||||
use PaypalServerSDKLib\Models\Money;
|
use PaypalServerSdkLib\Models\Money;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model AmountBreakdown
|
* Builder for model AmountBreakdown
|
||||||
|
|||||||
@@ -3,16 +3,16 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\AmountBreakdown;
|
use PaypalServerSdkLib\Models\AmountBreakdown;
|
||||||
use PaypalServerSDKLib\Models\AmountWithBreakdown;
|
use PaypalServerSdkLib\Models\AmountWithBreakdown;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model AmountWithBreakdown
|
* Builder for model AmountWithBreakdown
|
||||||
|
|||||||
@@ -3,17 +3,17 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\ApplePayAttributes;
|
use PaypalServerSdkLib\Models\ApplePayAttributes;
|
||||||
use PaypalServerSDKLib\Models\CustomerInformation;
|
use PaypalServerSdkLib\Models\CustomerInformation;
|
||||||
use PaypalServerSDKLib\Models\VaultInstruction;
|
use PaypalServerSdkLib\Models\VaultInstruction;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model ApplePayAttributes
|
* Builder for model ApplePayAttributes
|
||||||
|
|||||||
@@ -3,16 +3,16 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\ApplePayAttributesResponse;
|
use PaypalServerSdkLib\Models\ApplePayAttributesResponse;
|
||||||
use PaypalServerSDKLib\Models\VaultResponse;
|
use PaypalServerSdkLib\Models\VaultResponse;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model ApplePayAttributesResponse
|
* Builder for model ApplePayAttributesResponse
|
||||||
|
|||||||
@@ -3,16 +3,16 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\Address;
|
use PaypalServerSdkLib\Models\Address;
|
||||||
use PaypalServerSDKLib\Models\ApplePayCard;
|
use PaypalServerSdkLib\Models\ApplePayCard;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model ApplePayCard
|
* Builder for model ApplePayCard
|
||||||
|
|||||||
@@ -3,20 +3,20 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\Address;
|
use PaypalServerSdkLib\Models\Address;
|
||||||
use PaypalServerSDKLib\Models\ApplePayCardResponse;
|
use PaypalServerSdkLib\Models\ApplePayCardResponse;
|
||||||
use PaypalServerSDKLib\Models\AuthenticationResponse;
|
use PaypalServerSdkLib\Models\AuthenticationResponse;
|
||||||
use PaypalServerSDKLib\Models\BinDetails;
|
use PaypalServerSdkLib\Models\BinDetails;
|
||||||
use PaypalServerSDKLib\Models\CardAttributesResponse;
|
use PaypalServerSdkLib\Models\CardAttributesResponse;
|
||||||
use PaypalServerSDKLib\Models\CardFromRequest;
|
use PaypalServerSdkLib\Models\CardFromRequest;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model ApplePayCardResponse
|
* Builder for model ApplePayCardResponse
|
||||||
|
|||||||
@@ -3,18 +3,18 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\ApplePayDecryptedTokenData;
|
use PaypalServerSdkLib\Models\ApplePayDecryptedTokenData;
|
||||||
use PaypalServerSDKLib\Models\ApplePayPaymentData;
|
use PaypalServerSdkLib\Models\ApplePayPaymentData;
|
||||||
use PaypalServerSDKLib\Models\ApplePayTokenizedCard;
|
use PaypalServerSdkLib\Models\ApplePayTokenizedCard;
|
||||||
use PaypalServerSDKLib\Models\Money;
|
use PaypalServerSdkLib\Models\Money;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model ApplePayDecryptedTokenData
|
* Builder for model ApplePayDecryptedTokenData
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\ApplePayPaymentData;
|
use PaypalServerSdkLib\Models\ApplePayPaymentData;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model ApplePayPaymentData
|
* Builder for model ApplePayPaymentData
|
||||||
|
|||||||
@@ -3,18 +3,18 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\ApplePayAttributesResponse;
|
use PaypalServerSdkLib\Models\ApplePayAttributesResponse;
|
||||||
use PaypalServerSDKLib\Models\ApplePayCardResponse;
|
use PaypalServerSdkLib\Models\ApplePayCardResponse;
|
||||||
use PaypalServerSDKLib\Models\ApplePayPaymentObject;
|
use PaypalServerSdkLib\Models\ApplePayPaymentObject;
|
||||||
use PaypalServerSDKLib\Models\PhoneNumber;
|
use PaypalServerSdkLib\Models\PhoneNumber;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model ApplePayPaymentObject
|
* Builder for model ApplePayPaymentObject
|
||||||
|
|||||||
@@ -3,16 +3,16 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\ApplePayCard;
|
use PaypalServerSdkLib\Models\ApplePayCard;
|
||||||
use PaypalServerSDKLib\Models\ApplePayPaymentToken;
|
use PaypalServerSdkLib\Models\ApplePayPaymentToken;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model ApplePayPaymentToken
|
* Builder for model ApplePayPaymentToken
|
||||||
|
|||||||
@@ -3,19 +3,19 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\ApplePayAttributes;
|
use PaypalServerSdkLib\Models\ApplePayAttributes;
|
||||||
use PaypalServerSDKLib\Models\ApplePayDecryptedTokenData;
|
use PaypalServerSdkLib\Models\ApplePayDecryptedTokenData;
|
||||||
use PaypalServerSDKLib\Models\ApplePayRequest;
|
use PaypalServerSdkLib\Models\ApplePayRequest;
|
||||||
use PaypalServerSDKLib\Models\CardStoredCredential;
|
use PaypalServerSdkLib\Models\CardStoredCredential;
|
||||||
use PaypalServerSDKLib\Models\PhoneNumber;
|
use PaypalServerSdkLib\Models\PhoneNumber;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model ApplePayRequest
|
* Builder for model ApplePayRequest
|
||||||
|
|||||||
@@ -3,16 +3,16 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\Address;
|
use PaypalServerSdkLib\Models\Address;
|
||||||
use PaypalServerSDKLib\Models\ApplePayTokenizedCard;
|
use PaypalServerSdkLib\Models\ApplePayTokenizedCard;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model ApplePayTokenizedCard
|
* Builder for model ApplePayTokenizedCard
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\AssuranceDetails;
|
use PaypalServerSdkLib\Models\AssuranceDetails;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model AssuranceDetails
|
* Builder for model AssuranceDetails
|
||||||
|
|||||||
@@ -3,16 +3,16 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\AuthenticationResponse;
|
use PaypalServerSdkLib\Models\AuthenticationResponse;
|
||||||
use PaypalServerSDKLib\Models\ThreeDSecureAuthenticationResponse;
|
use PaypalServerSdkLib\Models\ThreeDSecureAuthenticationResponse;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model AuthenticationResponse
|
* Builder for model AuthenticationResponse
|
||||||
|
|||||||
@@ -3,19 +3,19 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\Authorization;
|
use PaypalServerSdkLib\Models\Authorization;
|
||||||
use PaypalServerSDKLib\Models\AuthorizationStatusDetails;
|
use PaypalServerSdkLib\Models\AuthorizationStatusDetails;
|
||||||
use PaypalServerSDKLib\Models\Money;
|
use PaypalServerSdkLib\Models\Money;
|
||||||
use PaypalServerSDKLib\Models\NetworkTransactionReference;
|
use PaypalServerSdkLib\Models\NetworkTransactionReference;
|
||||||
use PaypalServerSDKLib\Models\SellerProtection;
|
use PaypalServerSdkLib\Models\SellerProtection;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model Authorization
|
* Builder for model Authorization
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\AuthorizationStatusDetails;
|
use PaypalServerSdkLib\Models\AuthorizationStatusDetails;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model AuthorizationStatusDetails
|
* Builder for model AuthorizationStatusDetails
|
||||||
|
|||||||
@@ -3,16 +3,16 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\AuthorizationStatusDetails;
|
use PaypalServerSdkLib\Models\AuthorizationStatusDetails;
|
||||||
use PaypalServerSDKLib\Models\AuthorizationStatusWithDetails;
|
use PaypalServerSdkLib\Models\AuthorizationStatusWithDetails;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model AuthorizationStatusWithDetails
|
* Builder for model AuthorizationStatusWithDetails
|
||||||
|
|||||||
@@ -3,20 +3,20 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\AuthorizationStatusDetails;
|
use PaypalServerSdkLib\Models\AuthorizationStatusDetails;
|
||||||
use PaypalServerSDKLib\Models\AuthorizationWithAdditionalData;
|
use PaypalServerSdkLib\Models\AuthorizationWithAdditionalData;
|
||||||
use PaypalServerSDKLib\Models\Money;
|
use PaypalServerSdkLib\Models\Money;
|
||||||
use PaypalServerSDKLib\Models\NetworkTransactionReference;
|
use PaypalServerSdkLib\Models\NetworkTransactionReference;
|
||||||
use PaypalServerSDKLib\Models\ProcessorResponse;
|
use PaypalServerSdkLib\Models\ProcessorResponse;
|
||||||
use PaypalServerSDKLib\Models\SellerProtection;
|
use PaypalServerSdkLib\Models\SellerProtection;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model AuthorizationWithAdditionalData
|
* Builder for model AuthorizationWithAdditionalData
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\BLIKExperienceContext;
|
use PaypalServerSdkLib\Models\BLIKExperienceContext;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model BLIKExperienceContext
|
* Builder for model BLIKExperienceContext
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\BLIKLevel0PaymentObject;
|
use PaypalServerSdkLib\Models\BLIKLevel0PaymentObject;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model BLIKLevel0PaymentObject
|
* Builder for model BLIKLevel0PaymentObject
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\BLIKOneClickPaymentObject;
|
use PaypalServerSdkLib\Models\BLIKOneClickPaymentObject;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model BLIKOneClickPaymentObject
|
* Builder for model BLIKOneClickPaymentObject
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\BLIKOneClickPaymentRequest;
|
use PaypalServerSdkLib\Models\BLIKOneClickPaymentRequest;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model BLIKOneClickPaymentRequest
|
* Builder for model BLIKOneClickPaymentRequest
|
||||||
|
|||||||
@@ -3,16 +3,16 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\BLIKOneClickPaymentObject;
|
use PaypalServerSdkLib\Models\BLIKOneClickPaymentObject;
|
||||||
use PaypalServerSDKLib\Models\BLIKPaymentObject;
|
use PaypalServerSdkLib\Models\BLIKPaymentObject;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model BLIKPaymentObject
|
* Builder for model BLIKPaymentObject
|
||||||
|
|||||||
@@ -3,18 +3,18 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\BLIKExperienceContext;
|
use PaypalServerSdkLib\Models\BLIKExperienceContext;
|
||||||
use PaypalServerSDKLib\Models\BLIKLevel0PaymentObject;
|
use PaypalServerSdkLib\Models\BLIKLevel0PaymentObject;
|
||||||
use PaypalServerSDKLib\Models\BLIKOneClickPaymentRequest;
|
use PaypalServerSdkLib\Models\BLIKOneClickPaymentRequest;
|
||||||
use PaypalServerSDKLib\Models\BLIKPaymentRequest;
|
use PaypalServerSdkLib\Models\BLIKPaymentRequest;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model BLIKPaymentRequest
|
* Builder for model BLIKPaymentRequest
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\BancontactPaymentObject;
|
use PaypalServerSdkLib\Models\BancontactPaymentObject;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model BancontactPaymentObject
|
* Builder for model BancontactPaymentObject
|
||||||
|
|||||||
@@ -3,16 +3,16 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\BancontactPaymentRequest;
|
use PaypalServerSdkLib\Models\BancontactPaymentRequest;
|
||||||
use PaypalServerSDKLib\Models\ExperienceContext;
|
use PaypalServerSdkLib\Models\ExperienceContext;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model BancontactPaymentRequest
|
* Builder for model BancontactPaymentRequest
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\BinDetails;
|
use PaypalServerSdkLib\Models\BinDetails;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model BinDetails
|
* Builder for model BinDetails
|
||||||
|
|||||||
@@ -3,21 +3,21 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\Capture;
|
use PaypalServerSdkLib\Models\Capture;
|
||||||
use PaypalServerSDKLib\Models\CaptureStatusDetails;
|
use PaypalServerSdkLib\Models\CaptureStatusDetails;
|
||||||
use PaypalServerSDKLib\Models\Money;
|
use PaypalServerSdkLib\Models\Money;
|
||||||
use PaypalServerSDKLib\Models\NetworkTransactionReference;
|
use PaypalServerSdkLib\Models\NetworkTransactionReference;
|
||||||
use PaypalServerSDKLib\Models\ProcessorResponse;
|
use PaypalServerSdkLib\Models\ProcessorResponse;
|
||||||
use PaypalServerSDKLib\Models\SellerProtection;
|
use PaypalServerSdkLib\Models\SellerProtection;
|
||||||
use PaypalServerSDKLib\Models\SellerReceivableBreakdown;
|
use PaypalServerSdkLib\Models\SellerReceivableBreakdown;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model Capture
|
* Builder for model Capture
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\CapturePaymentInstruction;
|
use PaypalServerSdkLib\Models\CapturePaymentInstruction;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model CapturePaymentInstruction
|
* Builder for model CapturePaymentInstruction
|
||||||
|
|||||||
@@ -3,17 +3,17 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\CapturePaymentInstruction;
|
use PaypalServerSdkLib\Models\CapturePaymentInstruction;
|
||||||
use PaypalServerSDKLib\Models\CaptureRequest;
|
use PaypalServerSdkLib\Models\CaptureRequest;
|
||||||
use PaypalServerSDKLib\Models\Money;
|
use PaypalServerSdkLib\Models\Money;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model CaptureRequest
|
* Builder for model CaptureRequest
|
||||||
|
|||||||
@@ -3,15 +3,15 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* PaypalServerSDKLib
|
* PaypalServerSdkLib
|
||||||
*
|
*
|
||||||
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace PaypalServerSDKLib\Models\Builders;
|
namespace PaypalServerSdkLib\Models\Builders;
|
||||||
|
|
||||||
use Core\Utils\CoreHelper;
|
use Core\Utils\CoreHelper;
|
||||||
use PaypalServerSDKLib\Models\CaptureStatusDetails;
|
use PaypalServerSdkLib\Models\CaptureStatusDetails;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builder for model CaptureStatusDetails
|
* Builder for model CaptureStatusDetails
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user