Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
FireworksWebsites committed Jan 13, 2021
0 parents commit db2f0e8
Show file tree
Hide file tree
Showing 416 changed files with 130,033 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

return Symfony\CS\Config::create()
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
->setUsingCache(true)
->fixers(
[
'ordered_use',
'phpdoc_order',
'short_array_syntax',
'strict',
'strict_param'
]
)
->finder(
Symfony\CS\Finder\DefaultFinder::create()
->in(__DIR__)
);
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: php
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_install: "composer install"
script: "vendor/bin/phpunit"
930 changes: 930 additions & 0 deletions README.md

Large diffs are not rendered by default.

37 changes: 37 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "burger-digital/blackbaud-php-sdk",
"version": "1.0.0",
"description": "",
"keywords": [
"swagger",
"php",
"sdk",
"api"
],
"homepage": "http://swagger.io",
"license": "proprietary",
"authors": [
{
"name": "Swagger and contributors",
"homepage": "https://github.com/swagger-api/swagger-codegen"
}
],
"require": {
"php": ">=5.5",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "~2.6",
"friendsofphp/php-cs-fixer": "~1.12"
},
"autoload": {
"psr-4": { "BurgerDigital\\BlackbaudPhpSdk\\" : "/src/" }
},
"autoload-dev": {
"psr-4": { "BurgerDigital\\BlackbaudPhpSdk\\" : "test/" }
}
}
1,241 changes: 1,241 additions & 0 deletions docs/Api/ActionApi.md

Large diffs are not rendered by default.

509 changes: 509 additions & 0 deletions docs/Api/AddressApi.md

Large diffs are not rendered by default.

317 changes: 317 additions & 0 deletions docs/Api/AliasApi.md

Large diffs are not rendered by default.

317 changes: 317 additions & 0 deletions docs/Api/CommunicationPreferenceApi.md

Large diffs are not rendered by default.

2,207 changes: 2,207 additions & 0 deletions docs/Api/ConstituentApi.md

Large diffs are not rendered by default.

69 changes: 69 additions & 0 deletions docs/Api/ConstituentAppealApi.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# BurgerDigital\BlackbaudPhpSdk\ConstituentAppealApi

All URIs are relative to *https://api.sky.blackbaud.com/constituent/v1*

Method | HTTP request | Description
------------- | ------------- | -------------
[**listConstituentAppealsSingleConstituent**](ConstituentAppealApi.md#listconstituentappealssingleconstituent) | **GET** /constituents/{constituent_id}/appeals | Constituent appeal list (Single constituent)

# **listConstituentAppealsSingleConstituent**
> \BurgerDigital\BlackbaudPhpSdk\BurgerDigital\BlackbaudPhpSdk\Models\ApiCollectionConstituentAppealRead listConstituentAppealsSingleConstituent($constituent_id)
Constituent appeal list (Single constituent)

Returns a list of appeals for a constituent.

### Example
```php
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: apiKeyHeader
$config = BurgerDigital\BlackbaudPhpSdk\Configuration::getDefaultConfiguration()->setApiKey('Bb-Api-Subscription-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = BurgerDigital\BlackbaudPhpSdk\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Bb-Api-Subscription-Key', 'Bearer');// Configure API key authorization: apiKeyQuery
$config = BurgerDigital\BlackbaudPhpSdk\Configuration::getDefaultConfiguration()->setApiKey('subscription-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = BurgerDigital\BlackbaudPhpSdk\Configuration::getDefaultConfiguration()->setApiKeyPrefix('subscription-key', 'Bearer');
// Configure OAuth2 access token for authorization: oauth2Blackbaud OAuth 2.0 ServiceAuthorizationCode
$config = BurgerDigital\BlackbaudPhpSdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
// Configure OAuth2 access token for authorization: oauth2Blackbaud OAuth 2.0 ServiceImplicit
$config = BurgerDigital\BlackbaudPhpSdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$apiInstance = new BurgerDigital\BlackbaudPhpSdk\BurgerDigital\BlackbaudPhpSdk\Api\ConstituentAppealApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$constituent_id = "constituent_id_example"; // string | The immutable system record ID of the constituent to retrieve the appeals for.

try {
$result = $apiInstance->listConstituentAppealsSingleConstituent($constituent_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ConstituentAppealApi->listConstituentAppealsSingleConstituent: ', $e->getMessage(), PHP_EOL;
}
?>
```

### Parameters

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**constituent_id** | **string**| The immutable system record ID of the constituent to retrieve the appeals for. |

### Return type

[**\BurgerDigital\BlackbaudPhpSdk\BurgerDigital\BlackbaudPhpSdk\Models\ApiCollectionConstituentAppealRead**](../Model/ApiCollectionConstituentAppealRead.md)

### Authorization

[apiKeyHeader](../../README.md#apiKeyHeader), [apiKeyQuery](../../README.md#apiKeyQuery), [oauth2Blackbaud OAuth 2.0 ServiceAuthorizationCode](../../README.md#oauth2Blackbaud OAuth 2.0 ServiceAuthorizationCode), [oauth2Blackbaud OAuth 2.0 ServiceImplicit](../../README.md#oauth2Blackbaud OAuth 2.0 ServiceImplicit)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)

0 comments on commit db2f0e8

Please sign in to comment.