1
0

Automated commit message

This commit is contained in:
PayPalServerSDKs
2024-09-09 15:45:00 +00:00
parent f6cd8b4d4f
commit 462eda52e0
496 changed files with 1632 additions and 1674 deletions

View File

@@ -21,14 +21,14 @@ The following parameters are configurable for the API Client:
The API client can be initialized as follows:
```php
$client = PayPalRESTAPIsClientBuilder::init()
$client = PaypalServerSdkClientBuilder::init()
->clientCredentialsAuthCredentials(
ClientCredentialsAuthCredentialsBuilder::init(
'OAuthClientId',
'OAuthClientSecret'
)
)
->environment('Sandbox')
->environment(Environment::SANDBOX)
->loggingConfiguration(
LoggingConfigurationBuilder::init()
->level(LogLevel::INFO)
@@ -46,7 +46,7 @@ API calls return an `ApiResponse` object that includes the following fields:
| `getHeaders` | Headers of the HTTP response as a Hash |
| `getResult` | The deserialized body of the HTTP response as a String |
## PayPal REST APIs 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.