@@ -10,7 +10,7 @@ Method | HTTP request | Description
10
10
11
11
12
12
# ** createAttribute**
13
- > \Swagger\Client\Model\InlineResponse201 createAttribute($create_attribute )
13
+ > \Swagger\Client\Model\CreateModel createAttribute($createAttribute )
14
14
15
15
Creates contact attributes
16
16
@@ -23,10 +23,10 @@ require_once(__DIR__ . '/vendor/autoload.php');
23
23
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('api-key', 'YOUR_API_KEY');
24
24
25
25
$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
27
27
28
28
try {
29
- $result = $api_instance->createAttribute($create_attribute );
29
+ $result = $api_instance->createAttribute($createAttribute );
30
30
print_r($result);
31
31
} catch (Exception $e) {
32
32
echo 'Exception when calling AttributesApi->createAttribute: ', $e->getMessage(), PHP_EOL;
@@ -38,11 +38,11 @@ try {
38
38
39
39
Name | Type | Description | Notes
40
40
------------- | ------------- | ------------- | -------------
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 |
42
42
43
43
### Return type
44
44
45
- [ ** \Swagger\Client\Model\InlineResponse201 ** ] ( ../Model/InlineResponse201 .md )
45
+ [ ** \Swagger\Client\Model\CreateModel ** ] ( ../Model/CreateModel .md )
46
46
47
47
### Authorization
48
48
@@ -56,7 +56,7 @@ Name | Type | Description | Notes
56
56
[[ 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 )
57
57
58
58
# ** deleteAttribute**
59
- > deleteAttribute($attribute_id )
59
+ > deleteAttribute($attributeId )
60
60
61
61
Deletes an attribute
62
62
@@ -69,10 +69,10 @@ require_once(__DIR__ . '/vendor/autoload.php');
69
69
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('api-key', 'YOUR_API_KEY');
70
70
71
71
$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
73
73
74
74
try {
75
- $api_instance->deleteAttribute($attribute_id );
75
+ $api_instance->deleteAttribute($attributeId );
76
76
} catch (Exception $e) {
77
77
echo 'Exception when calling AttributesApi->deleteAttribute: ', $e->getMessage(), PHP_EOL;
78
78
}
83
83
84
84
Name | Type | Description | Notes
85
85
------------- | ------------- | ------------- | -------------
86
- ** attribute_id ** | ** string** | id of the attribute |
86
+ ** attributeId ** | ** string** | id of the attribute |
87
87
88
88
### Return type
89
89
@@ -101,7 +101,7 @@ void (empty response body)
101
101
[[ 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 )
102
102
103
103
# ** getAttributes**
104
- > \Swagger\Client\Model\InlineResponse20016 getAttributes()
104
+ > \Swagger\Client\Model\GetAttributes getAttributes()
105
105
106
106
Lists all attributes
107
107
@@ -129,7 +129,7 @@ This endpoint does not need any parameter.
129
129
130
130
### Return type
131
131
132
- [ ** \Swagger\Client\Model\InlineResponse20016 ** ] ( ../Model/InlineResponse20016 .md )
132
+ [ ** \Swagger\Client\Model\GetAttributes ** ] ( ../Model/GetAttributes .md )
133
133
134
134
### Authorization
135
135
0 commit comments