Skip to content

Commit f058d8e

Browse files
committed
V21.9.3 - 2021-09-20
1 parent ad9d140 commit f058d8e

33 files changed

+66
-66
lines changed

src/ConstantContact/V3/Account/Emails.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ public function get(?string $confirm_status = null, ?string $role_code = null, ?
7171
* in the API guide.
7272
*
7373
*
74-
* @param PHPFUI\ConstantContact\Definition\AccountEmailInput $body A JSON request payload containing the new email address you want to add to the Constant Contact account.
74+
* @param \PHPFUI\ConstantContact\Definition\AccountEmailInput $body A JSON request payload containing the new email address you want to add to the Constant Contact account.
7575
*/
76-
public function post(PHPFUI\ConstantContact\Definition\AccountEmailInput $body) : array
76+
public function post(\PHPFUI\ConstantContact\Definition\AccountEmailInput $body) : array
7777
{
7878
return $this->doPost(['body' => $body, ]);
7979
}

src/ConstantContact/V3/Account/Summary.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ public function get(?string $extra_fields = null) : array
5151
* For more details, see [Put (update) Account Summary Details](https://v3.developer.constantcontact.com/api_guide/account_details_put.html).
5252
*
5353
*
54-
* @param PHPFUI\ConstantContact\Definition\CustomerPut $body In the request body, specify changes to account details by including and modifying all or select `CustomerPut` properties. Changes to read-only fields (`encoded_account_id`) are ignored.
54+
* @param \PHPFUI\ConstantContact\Definition\CustomerPut $body In the request body, specify changes to account details by including and modifying all or select `CustomerPut` properties. Changes to read-only fields (`encoded_account_id`) are ignored.
5555
*/
56-
public function put(PHPFUI\ConstantContact\Definition\CustomerPut $body) : array
56+
public function put(\PHPFUI\ConstantContact\Definition\CustomerPut $body) : array
5757
{
5858
return $this->doPut(['body' => $body, ]);
5959
}

src/ConstantContact/V3/Account/Summary/PhysicalAddress.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ public function get() : array
4242
* You must have the role of Account Owner assigned to update account level
4343
* details.
4444
*
45-
* @param PHPFUI\ConstantContact\Definition\AccountPhysicalAddress $body Include all `AccountPhysicalAddress` properties required for the specified `country_code` and then update only those properties that you want to change. Excluding a non-read only field from the request body removes it from the physical address.
45+
* @param \PHPFUI\ConstantContact\Definition\AccountPhysicalAddress $body Include all `AccountPhysicalAddress` properties required for the specified `country_code` and then update only those properties that you want to change. Excluding a non-read only field from the request body removes it from the physical address.
4646
*/
47-
public function put(PHPFUI\ConstantContact\Definition\AccountPhysicalAddress $body) : array
47+
public function put(\PHPFUI\ConstantContact\Definition\AccountPhysicalAddress $body) : array
4848
{
4949
return $this->doPut(['body' => $body, ]);
5050
}

src/ConstantContact/V3/Activities/AddListMemberships.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
2222
* Use the `list_ids` array to specify which lists you want to add your
2323
* source contacts to.
2424
*
25-
* @param PHPFUI\ConstantContact\Definition\ListActivityAddContacts $body The JSON payload used to create the 'add contacts to lists' activity
25+
* @param \PHPFUI\ConstantContact\Definition\ListActivityAddContacts $body The JSON payload used to create the 'add contacts to lists' activity
2626
*/
27-
public function post(PHPFUI\ConstantContact\Definition\ListActivityAddContacts $body) : array
27+
public function post(\PHPFUI\ConstantContact\Definition\ListActivityAddContacts $body) : array
2828
{
2929
return $this->doPost(['body' => $body, ]);
3030
}

src/ConstantContact/V3/Activities/ContactDelete.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
2424
* be added back to an account. [Learn how to revive deleted contacts](https://v3.developer.constantcontact.com/api_guide/contacts_delete.html#revive).
2525
*
2626
*
27-
* @param PHPFUI\ConstantContact\Definition\ContactDelete $body The request body contains an array of contact_ids <em>or</em> list_ids. All contact_ids provided are deleted, or all members of each specified list_id are deleted.
27+
* @param \PHPFUI\ConstantContact\Definition\ContactDelete $body The request body contains an array of contact_ids <em>or</em> list_ids. All contact_ids provided are deleted, or all members of each specified list_id are deleted.
2828
*/
29-
public function post(PHPFUI\ConstantContact\Definition\ContactDelete $body) : array
29+
public function post(\PHPFUI\ConstantContact\Definition\ContactDelete $body) : array
3030
{
3131
return $this->doPost(['body' => $body, ]);
3232
}

src/ConstantContact/V3/Activities/ContactExports.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
2020
* file. After Constant Contact finishes processing the activity, use the
2121
* `results` link in the response body to retrieve the CSV file.
2222
*
23-
* @param PHPFUI\ConstantContact\Definition\ContactsExport $body A JSON payload that specifies the contacts (rows in the CSV file) and contact properties (columns in the CSV file) you want to export.
23+
* @param \PHPFUI\ConstantContact\Definition\ContactsExport $body A JSON payload that specifies the contacts (rows in the CSV file) and contact properties (columns in the CSV file) you want to export.
2424
*/
25-
public function post(PHPFUI\ConstantContact\Definition\ContactsExport $body) : array
25+
public function post(\PHPFUI\ConstantContact\Definition\ContactsExport $body) : array
2626
{
2727
return $this->doPost(['body' => $body, ]);
2828
}

src/ConstantContact/V3/Activities/ContactsJsonImport.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
3737
* the request body exceeds 4 MB, this method only imports the first 4
3838
* MB and drops the remaining data.
3939
*
40-
* @param PHPFUI\ConstantContact\Definition\ContactsJsonImport $body The JSON request payload that contains the contact data and contact lists for the import.
40+
* @param \PHPFUI\ConstantContact\Definition\ContactsJsonImport $body The JSON request payload that contains the contact data and contact lists for the import.
4141
*/
42-
public function post(PHPFUI\ConstantContact\Definition\ContactsJsonImport $body) : array
42+
public function post(\PHPFUI\ConstantContact\Definition\ContactsJsonImport $body) : array
4343
{
4444
return $this->doPost(['body' => $body, ]);
4545
}

src/ConstantContact/V3/Activities/ContactsTaggingsAdd.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
3030
*
3131
*
3232
*
33-
* @param PHPFUI\ConstantContact\Definition\TagAddRemoveContacts $body The JSON payload used to create an asynchronous activity that adds tags to contacts that meet your specified contact filtering criteria.
33+
* @param \PHPFUI\ConstantContact\Definition\TagAddRemoveContacts $body The JSON payload used to create an asynchronous activity that adds tags to contacts that meet your specified contact filtering criteria.
3434
*/
35-
public function post(PHPFUI\ConstantContact\Definition\TagAddRemoveContacts $body) : array
35+
public function post(\PHPFUI\ConstantContact\Definition\TagAddRemoveContacts $body) : array
3636
{
3737
return $this->doPost(['body' => $body, ]);
3838
}

src/ConstantContact/V3/Activities/ContactsTaggingsRemove.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
3030
*
3131
*
3232
*
33-
* @param PHPFUI\ConstantContact\Definition\TagAddRemoveContacts $body The JSON payload used to create an asynchronous activity that removes tags from contacts meeting your specified contact filtering criteria.
33+
* @param \PHPFUI\ConstantContact\Definition\TagAddRemoveContacts $body The JSON payload used to create an asynchronous activity that removes tags from contacts meeting your specified contact filtering criteria.
3434
*/
35-
public function post(PHPFUI\ConstantContact\Definition\TagAddRemoveContacts $body) : array
35+
public function post(\PHPFUI\ConstantContact\Definition\TagAddRemoveContacts $body) : array
3636
{
3737
return $this->doPost(['body' => $body, ]);
3838
}

src/ConstantContact/V3/Activities/ContactsTagsDelete.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
2121
* Use the `tag_ids` array of string values in the request body to specify
2222
* which tags to delete.
2323
*
24-
* @param PHPFUI\ConstantContact\Definition\TagIdList500Limit $body An array of string values (`tag_id`s) to delete.
24+
* @param \PHPFUI\ConstantContact\Definition\TagIdList500Limit $body An array of string values (`tag_id`s) to delete.
2525
*/
26-
public function post(PHPFUI\ConstantContact\Definition\TagIdList500Limit $body) : array
26+
public function post(\PHPFUI\ConstantContact\Definition\TagIdList500Limit $body) : array
2727
{
2828
return $this->doPost(['body' => $body, ]);
2929
}

0 commit comments

Comments
 (0)