Skip to content

Commit 8255036

Browse files
committed
V21.11.4 - 2021-11-11
1 parent 19bc300 commit 8255036

File tree

12 files changed

+35
-19
lines changed

12 files changed

+35
-19
lines changed

src/ConstantContact/Definition/ActivityLinks.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
namespace PHPFUI\ConstantContact\Definition;
66

7+
/**
8+
*/
79
class ActivityLinks extends \PHPFUI\ConstantContact\Definition\Base
810
{
911
protected static array $fields = [

src/ConstantContact/Definition/CustomFields.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
namespace PHPFUI\ConstantContact\Definition;
66

7+
/**
8+
*/
79
class CustomFields extends \PHPFUI\ConstantContact\Definition\Base
810
{
911
protected static array $fields = [

src/ConstantContact/Definition/Lin.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
namespace PHPFUI\ConstantContact\Definition;
66

7+
/**
8+
*/
79
class Lin extends \PHPFUI\ConstantContact\Definition\Base
810
{
911
protected static array $fields = [

src/ConstantContact/Definition/Link2.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
namespace PHPFUI\ConstantContact\Definition;
66

7+
/**
8+
*/
79
class Link2 extends \PHPFUI\ConstantContact\Definition\Base
810
{
911
protected static array $fields = [

src/ConstantContact/Definition/Next.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@
44

55
namespace PHPFUI\ConstantContact\Definition;
66

7+
/**
8+
*/
79
class Next extends \PHPFUI\ConstantContact\Definition\Base
810
{ }

src/ConstantContact/Definition/PagedEmailCampaignResponse.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
namespace PHPFUI\ConstantContact\Definition;
66

7+
/**
8+
*/
79
class PagedEmailCampaignResponse extends \PHPFUI\ConstantContact\Definition\Base
810
{
911
protected static array $fields = [

src/ConstantContact/Definition/PagingLinks.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
namespace PHPFUI\ConstantContact\Definition;
66

7+
/**
8+
*/
79
class PagingLinks extends \PHPFUI\ConstantContact\Definition\Base
810
{
911
protected static array $fields = [

src/ConstantContact/Definition/Results.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
namespace PHPFUI\ConstantContact\Definition;
66

7+
/**
8+
*/
79
class Results extends \PHPFUI\ConstantContact\Definition\Base
810
{
911
protected static array $fields = [

src/ConstantContact/V3/Account/Emails.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
2828
*
2929
*
3030
* @param string $confirm_status Use the `confirm_status` query parameter to search for account emails using the email status. Possible values are `CONFIRMED` or `UNCONFIRMED`. You can also abbreviate the values of this query parameter and use `C` or `U`.
31-
*
31+
3232
* @param string $role_code Use the `role_code` query parameter to search for account emails that have a specific role. Each each email address in an account can have multiple roles or no role. Possible values are `CONTACT`, `BILLING`, `REPLY_TO`, `JOURNALING`, or `OTHER`. You can also abbreviate the value of this query parameter and use `C`,`B`,`R`,`J`, or `O`.
3333
* @param string $email_address Use the `email_address` query parameter to search for a specific account email address.
3434
*/

src/ConstantContact/V3/Activities/ContactsFileImport.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
3030
* and the remaining data is dropped.
3131
*
3232
* @param file $file The CSV file you are importing. The column headings that you can use in the file are: `first_name`,
33-
* `last_name`, `email`, `phone`, `job_title`, `anniversary`, `birthday_day`, `birthday_month`, `company_name`, `street`, `street2`, `city`, `state`, `zip`, and `country`. The only required column heading is `email`.
34-
*
35-
*
36-
* You can also use custom fields as column headings. Enter the custom field name prefixed with `cf:` as the column heading. For example, use `cf:first_name` as the header name if you have a custom field named "first_name". The custom field must already exist in the Constant Contact account you are using. Depending on the custom field data type, you can enter dates or strings as the value of the custom field. Each contact can contain up to 25 different custom fields.
37-
*
33+
`last_name`, `email`, `phone`, `job_title`, `anniversary`, `birthday_day`, `birthday_month`, `company_name`, `street`, `street2`, `city`, `state`, `zip`, and `country`. The only required column heading is `email`.
34+
35+
36+
You can also use custom fields as column headings. Enter the custom field name prefixed with `cf:` as the column heading. For example, use `cf:first_name` as the header name if you have a custom field named "first_name". The custom field must already exist in the Constant Contact account you are using. Depending on the custom field data type, you can enter dates or strings as the value of the custom field. Each contact can contain up to 25 different custom fields.
37+
3838
* @param array $list_ids Specify which contact lists you are adding all imported contacts to as an array of up to 50 contact `list_id` values.
3939
*/
4040
public function post(file $file, array $list_ids) : array

0 commit comments

Comments
 (0)