@@ -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
1515Creates contact attributes
1616
@@ -23,10 +23,10 @@ require_once(__DIR__ . '/vendor/autoload.php');
2323Swagger\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
2828try {
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
3939Name | 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
6161Deletes an attribute
6262
@@ -69,10 +69,10 @@ require_once(__DIR__ . '/vendor/autoload.php');
6969Swagger\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
7474try {
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}
8383
8484Name | 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
106106Lists 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