Skip to content

Commit 71651c2

Browse files
committed
Integrator API, new SDK version
1 parent d17d0c7 commit 71651c2

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

wscli-php-sdk/swagger-php-sdk/SwaggerClient-php/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Class | Method | HTTP request | Description
9595
*FilesApi* | [**downloadFile**](docs/Api/FilesApi.md#downloadfile) | **GET** /files/{Bank}/{FileType}/{FileReference} | DownloadFile
9696
*FilesApi* | [**listFiles**](docs/Api/FilesApi.md#listfiles) | **GET** /files/{Bank} | ListFiles
9797
*FilesApi* | [**uploadFile**](docs/Api/FilesApi.md#uploadfile) | **PUT** /files/{Bank} | UploadFile
98-
*IntegratorTBDApi* | [**listAccounts**](docs/Api/IntegratorTBDApi.md#listaccounts) | **GET** /integrator/accounts | ListAccounts
98+
*IntegratorApi* | [**listAccounts**](docs/Api/IntegratorApi.md#listaccounts) | **GET** /integrator/accounts | ListAccounts
9999
*PgpTBDApi* | [**deleteKey**](docs/Api/PgpTBDApi.md#deletekey) | **DELETE** /pgp | DeleteKey
100100
*PgpTBDApi* | [**listKeys**](docs/Api/PgpTBDApi.md#listkeys) | **GET** /pgp | ListKeys
101101
*PgpTBDApi* | [**uploadKey**](docs/Api/PgpTBDApi.md#uploadkey) | **PUT** /pgp | UploadKey

wscli-php-sdk/swagger-php-sdk/SwaggerClient-php/docs/Api/CertsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Method | HTTP request | Description
1818
1919
ConfigCerts
2020

21-
Configure certificate usage parameters. Currently, only settable (permanent) parameter is `export`. Set it to `disable` for disallowing private key export. **NOTE**: When export is disabled it is permanent, it can not be re-enabled through the API (safety feature).
21+
Configure certificate usage parameters. Currently, only settable (permanent) parameter is `export`. Set it to `disabled` for disallowing private key export. **NOTE**: When export is disabled it is permanent, it can not be re-enabled through the API (safety feature).
2222

2323
### Example
2424
```php

wscli-php-sdk/swagger-php-sdk/SwaggerClient-php/docs/Api/IntegratorTBDApi.md renamed to wscli-php-sdk/swagger-php-sdk/SwaggerClient-php/docs/Api/IntegratorApi.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# Swagger\Client\IntegratorTBDApi
1+
# Swagger\Client\IntegratorApi
22

33
All URIs are relative to *https://ws-api.test.isecure.fi/v2/*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**listAccounts**](IntegratorTBDApi.md#listAccounts) | **GET** /integrator/accounts | ListAccounts
7+
[**listAccounts**](IntegratorApi.md#listAccounts) | **GET** /integrator/accounts | ListAccounts
88

99

1010
# **listAccounts**
1111
> \Swagger\Client\Model\ListAccountsResp listAccounts($authorization)
1212
1313
ListAccounts
1414

15-
List accounts registered under the integrator's API key. Account that created the API key is authorized to call this. API implementation is to-be-done (TBD).
15+
List accounts registered under the integrator's API key. Account that created the API key is authorized to call this.
1616

1717
### Example
1818
```php
@@ -28,14 +28,14 @@ Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('x-api-key',
2828
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
2929
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('x-api-key', 'Bearer');
3030

31-
$api_instance = new Swagger\Client\Api\IntegratorTBDApi();
31+
$api_instance = new Swagger\Client\Api\IntegratorApi();
3232
$authorization = "authorization_example"; // string | Use _IdToken_ from the Login response as the Authorization header
3333

3434
try {
3535
$result = $api_instance->listAccounts($authorization);
3636
print_r($result);
3737
} catch (Exception $e) {
38-
echo 'Exception when calling IntegratorTBDApi->listAccounts: ', $e->getMessage(), PHP_EOL;
38+
echo 'Exception when calling IntegratorApi->listAccounts: ', $e->getMessage(), PHP_EOL;
3939
}
4040
?>
4141
```

wscli-php-sdk/swagger-php-sdk/SwaggerClient-php/lib/Api/IntegratorTBDApi.php renamed to wscli-php-sdk/swagger-php-sdk/SwaggerClient-php/lib/Api/IntegratorApi.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* IntegratorTBDApi
3+
* IntegratorApi
44
* PHP version 5
55
*
66
* @category Class
@@ -34,14 +34,14 @@
3434
use \Swagger\Client\ObjectSerializer;
3535

3636
/**
37-
* IntegratorTBDApi Class Doc Comment
37+
* IntegratorApi Class Doc Comment
3838
*
3939
* @category Class
4040
* @package Swagger\Client
4141
* @author Swagger Codegen team
4242
* @link https://github.com/swagger-api/swagger-codegen
4343
*/
44-
class IntegratorTBDApi
44+
class IntegratorApi
4545
{
4646
/**
4747
* API Client
@@ -79,7 +79,7 @@ public function getApiClient()
7979
*
8080
* @param \Swagger\Client\ApiClient $apiClient set the API client
8181
*
82-
* @return IntegratorTBDApi
82+
* @return IntegratorApi
8383
*/
8484
public function setApiClient(\Swagger\Client\ApiClient $apiClient)
8585
{

wscli-php-sdk/swagger-php-sdk/SwaggerClient-php/lib/Model/ConfigCertsReq.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static function swaggerTypes()
6767
* @var string[]
6868
*/
6969
protected static $attributeMap = [
70-
'export' => 'export'
70+
'export' => 'Export'
7171
];
7272

7373

wscli-php-sdk/swagger-php-sdk/SwaggerClient-php/test/Api/IntegratorTBDApiTest.php renamed to wscli-php-sdk/swagger-php-sdk/SwaggerClient-php/test/Api/IntegratorApiTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* IntegratorTBDApiTest
3+
* IntegratorApiTest
44
* PHP version 5
55
*
66
* @category Class
@@ -34,14 +34,14 @@
3434
use \Swagger\Client\ObjectSerializer;
3535

3636
/**
37-
* IntegratorTBDApiTest Class Doc Comment
37+
* IntegratorApiTest Class Doc Comment
3838
*
3939
* @category Class
4040
* @package Swagger\Client
4141
* @author Swagger Codegen team
4242
* @link https://github.com/swagger-api/swagger-codegen
4343
*/
44-
class IntegratorTBDApiTest extends \PHPUnit_Framework_TestCase
44+
class IntegratorApiTest extends \PHPUnit_Framework_TestCase
4545
{
4646

4747
/**

0 commit comments

Comments
 (0)