Skip to content

Commit 5205a7b

Browse files
committed
Fix model files
1 parent eab5bb4 commit 5205a7b

File tree

721 files changed

+6952
-50947
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

721 files changed

+6952
-50947
lines changed

.swagger-codegen-ignore

Lines changed: 0 additions & 23 deletions
This file was deleted.

.swagger-codegen/VERSION

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 63 additions & 153 deletions
Large diffs are not rendered by default.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "sendinblue-apiv3",
2+
"name": "sendinblue/sendinblue-apiv3",
33
"description": "Official SendinBlue provided RESTFul API V3 php library",
44
"keywords": [
55
"sendinblue",

docs/Api/AccountApi.md

100755100644
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Method | HTTP request | Description
88

99

1010
# **getAccount**
11-
> \Swagger\Client\Model\InlineResponse200 getAccount()
11+
> \Swagger\Client\Model\GetAccount getAccount()
1212
1313
Get your account informations, plans and credits details
1414

@@ -36,7 +36,7 @@ This endpoint does not need any parameter.
3636

3737
### Return type
3838

39-
[**\Swagger\Client\Model\InlineResponse200**](../Model/InlineResponse200.md)
39+
[**\Swagger\Client\Model\GetAccount**](../Model/GetAccount.md)
4040

4141
### Authorization
4242

docs/Api/AttributesApi.md

100755100644
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Method | HTTP request | Description
1010

1111

1212
# **createAttribute**
13-
> \Swagger\Client\Model\InlineResponse201 createAttribute($create_attribute)
13+
> \Swagger\Client\Model\CreateModel createAttribute($createAttribute)
1414
1515
Creates contact attributes
1616

@@ -23,10 +23,10 @@ require_once(__DIR__ . '/vendor/autoload.php');
2323
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('api-key', 'YOUR_API_KEY');
2424

2525
$api_instance = new Swagger\Client\Api\AttributesApi();
26-
$create_attribute = new \Swagger\Client\Model\CreateAttribute1(); // \Swagger\Client\Model\CreateAttribute1 | Values to create an attribute
26+
$createAttribute = new \Swagger\Client\Model\CreateAttribute(); // \Swagger\Client\Model\CreateAttribute | Values to create an attribute
2727

2828
try {
29-
$result = $api_instance->createAttribute($create_attribute);
29+
$result = $api_instance->createAttribute($createAttribute);
3030
print_r($result);
3131
} catch (Exception $e) {
3232
echo 'Exception when calling AttributesApi->createAttribute: ', $e->getMessage(), PHP_EOL;
@@ -38,11 +38,11 @@ try {
3838

3939
Name | Type | Description | Notes
4040
------------- | ------------- | ------------- | -------------
41-
**create_attribute** | [**\Swagger\Client\Model\CreateAttribute1**](../Model/CreateAttribute1.md)| Values to create an attribute |
41+
**createAttribute** | [**\Swagger\Client\Model\CreateAttribute**](../Model/CreateAttribute.md)| Values to create an attribute |
4242

4343
### Return type
4444

45-
[**\Swagger\Client\Model\InlineResponse201**](../Model/InlineResponse201.md)
45+
[**\Swagger\Client\Model\CreateModel**](../Model/CreateModel.md)
4646

4747
### Authorization
4848

@@ -56,7 +56,7 @@ Name | Type | Description | Notes
5656
[[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)
5757

5858
# **deleteAttribute**
59-
> deleteAttribute($attribute_id)
59+
> deleteAttribute($attributeId)
6060
6161
Deletes an attribute
6262

@@ -69,10 +69,10 @@ require_once(__DIR__ . '/vendor/autoload.php');
6969
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('api-key', 'YOUR_API_KEY');
7070

7171
$api_instance = new Swagger\Client\Api\AttributesApi();
72-
$attribute_id = "attribute_id_example"; // string | id of the attribute
72+
$attributeId = "attributeId_example"; // string | id of the attribute
7373

7474
try {
75-
$api_instance->deleteAttribute($attribute_id);
75+
$api_instance->deleteAttribute($attributeId);
7676
} catch (Exception $e) {
7777
echo 'Exception when calling AttributesApi->deleteAttribute: ', $e->getMessage(), PHP_EOL;
7878
}
@@ -83,7 +83,7 @@ try {
8383

8484
Name | Type | Description | Notes
8585
------------- | ------------- | ------------- | -------------
86-
**attribute_id** | **string**| id of the attribute |
86+
**attributeId** | **string**| id of the attribute |
8787

8888
### Return type
8989

@@ -101,7 +101,7 @@ void (empty response body)
101101
[[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)
102102

103103
# **getAttributes**
104-
> \Swagger\Client\Model\InlineResponse20016 getAttributes()
104+
> \Swagger\Client\Model\GetAttributes getAttributes()
105105
106106
Lists all attributes
107107

@@ -129,7 +129,7 @@ This endpoint does not need any parameter.
129129

130130
### Return type
131131

132-
[**\Swagger\Client\Model\InlineResponse20016**](../Model/InlineResponse20016.md)
132+
[**\Swagger\Client\Model\GetAttributes**](../Model/GetAttributes.md)
133133

134134
### Authorization
135135

0 commit comments

Comments
 (0)