Skip to content

Commit 2cdd15f

Browse files
committed
V22.6.0 - 2022-06-02
1 parent 66750f8 commit 2cdd15f

File tree

207 files changed

+1082
-817
lines changed

Some content is hidden

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

207 files changed

+1082
-817
lines changed

src/ConstantContact/Definition/ABTestData.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @var string $alternative_subject The alternate email subject line to use for A/B testing.
9-
* @var int $test_size The percentage of contact recipients to participate in the A/B Test. For example, if the value is 30, then 30% of contacts will receive the email campaign with subject line A, and 30% of contacts will receive the email campaign with subject line B. Valid values include <code>5</code> to <code>50</code> percent. Currently, A/B tests support subject line only.
10-
* @var int $winner_wait_duration The number of hours Constant Contact waits after the A/B test is sent before determining the winning subject line. The winner is the subject line with the highest number of contact opens. After the winner is determined, Constant Contact automatically sends the email campaign with the winning subject line to all the remaining contacts, which did not participate in the A/B test.
8+
* @property string $alternative_subject The alternate email subject line to use for A/B testing.
9+
* @property int $test_size The percentage of contact recipients to participate in the A/B Test. For example, if the value is 30, then 30% of contacts will receive the email campaign with subject line A, and 30% of contacts will receive the email campaign with subject line B. Valid values include <code>5</code> to <code>50</code> percent. Currently, A/B tests support subject line only.
10+
* @property int $winner_wait_duration The number of hours Constant Contact waits after the A/B test is sent before determining the winning subject line. The winner is the subject line with the highest number of contact opens. Valid values include <code>6</code>, <code>12</code>, <code>24</code>, and <code>48</code>. After the winner is determined, Constant Contact automatically sends the email campaign with the winning subject line to all the remaining contacts, which did not participate in the A/B test.
1111
*/
1212
class ABTestData extends \PHPFUI\ConstantContact\Definition\Base
1313
{

src/ConstantContact/Definition/AccountCancellation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @var int $reason_id Specifies the reason that the client is canceling their Constant Contact account as follows:
8+
* @property int $reason_id Specifies the reason that the client is canceling their Constant Contact account as follows:
99
* <ul>
1010
* <li><code>1</code> Cost Too High</li>
1111
* <li><code>2</code> Using A Competitive Service</li>
@@ -17,7 +17,7 @@
1717
* <li><code>27</code> Canceled Online by Customer</li>
1818
* <li><code>30</code> Dissatisfied With Billing Policies</li>
1919
* </ul>
20-
* @var \PHPFUI\ConstantContact\DateTime $effective_date The client account cancellation date and time in ISO-8601 format.
20+
* @property \PHPFUI\ConstantContact\DateTime $effective_date The client account cancellation date and time in ISO-8601 format.
2121
*/
2222
class AccountCancellation extends \PHPFUI\ConstantContact\Definition\Base
2323
{

src/ConstantContact/Definition/AccountEmailCreateResponse.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @var string $email_address An email address associated with a Constant Contact account owner.
9-
* @var int $email_id The unique ID for an email address in a Constant Contact account.
10-
* @var string $confirm_status The confirmation status of the account email address. When you add a new email address to an account, Constant Contact automatically sends an email to that address with a link to confirm it. You can use any account email address with a <code>CONFIRMED</code> status to create an email campaign.
8+
* @property string $email_address An email address associated with a Constant Contact account owner.
9+
* @property int $email_id The unique ID for an email address in a Constant Contact account.
10+
* @property string $confirm_status The confirmation status of the account email address. When you add a new email address to an account, Constant Contact automatically sends an email to that address with a link to confirm it. You can use any account email address with a <code>CONFIRMED</code> status to create an email campaign.
1111
*/
1212
class AccountEmailCreateResponse extends \PHPFUI\ConstantContact\Definition\Base
1313
{

src/ConstantContact/Definition/AccountEmailInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @var string $email_address The new email address you want to add to a Constant Contact account.
8+
* @property string $email_address The new email address you want to add to a Constant Contact account.
99
*/
1010
class AccountEmailInput extends \PHPFUI\ConstantContact\Definition\Base
1111
{

src/ConstantContact/Definition/AccountPhysicalAddress.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @var string $address_line1 Line 1 of the organization's street address.
9-
* @var string $address_line2 Line 2 of the organization's street address.
10-
* @var string $address_line3 Line 3 of the organization's street address.
11-
* @var string $city The city where the organization is located.
12-
* @var string $state_code The two letter ISO 3166-1 code for the organization's state and only used if the <code>country_code</code> is <code>US</code> or <code>CA</code>. If not, exclude this property from the request body.
13-
* @var string $state_name Use if the state where the organization is physically located is not in the United States or Canada. If <code>country_code</code> is <code>US</code> or <code>CA</code>, exclude this property from the request body.
14-
* @var string $postal_code The postal code address (ZIP code) of the organization. This property is required if the <code>state_code</code> is <code>US</code> or <code>CA</code>, otherwise exclude this property from the request body.
15-
* @var string $country_code The two letter <a href='https://en.wikipedia.org/wiki/ISO_3166-1' target='_blank'>ISO 3166-1 code</a> for the organization's country.
8+
* @property string $address_line1 Line 1 of the organization's street address.
9+
* @property string $address_line2 Line 2 of the organization's street address.
10+
* @property string $address_line3 Line 3 of the organization's street address.
11+
* @property string $city The city where the organization is located.
12+
* @property string $state_code The two letter ISO 3166-1 code for the organization's state and only used if the <code>country_code</code> is <code>US</code> or <code>CA</code>. If not, exclude this property from the request body.
13+
* @property string $state_name Use if the state where the organization is physically located is not in the United States or Canada. If <code>country_code</code> is <code>US</code> or <code>CA</code>, exclude this property from the request body.
14+
* @property string $postal_code The postal code address (ZIP code) of the organization. This property is required if the <code>state_code</code> is <code>US</code> or <code>CA</code>, otherwise exclude this property from the request body.
15+
* @property string $country_code The two letter <a href='https://en.wikipedia.org/wiki/ISO_3166-1' target='_blank'>ISO 3166-1 code</a> for the organization's country.
1616
*/
1717
class AccountPhysicalAddress extends \PHPFUI\ConstantContact\Definition\Base
1818
{

src/ConstantContact/Definition/Activities.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @var array $activities A list of bulk activity jobs and status submitted by the account over the past 10 days.
9-
* @var \PHPFUI\ConstantContact\Definition\PagingLinks $_links
8+
* @property array $activities A list of bulk activity jobs and status submitted by the account over the past 10 days.
9+
* @property \PHPFUI\ConstantContact\Definition\PagingLinks $_links
1010
*/
1111
class Activities extends \PHPFUI\ConstantContact\Definition\Base
1212
{

src/ConstantContact/Definition/Activity.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @var \PHPFUI\ConstantContact\UUID $activity_id Unique ID for the activity.
9-
* @var string $state The state of the request: initialized - request has been received processing - request is being processed completed - job completed cancelled - request was cancelled failed - job failed to complete timed_out - the request timed out before completing
10-
* @var \PHPFUI\ConstantContact\DateTime $started_at Timestamp showing when we began processing the activity request, in ISO-8601 format.
11-
* @var \PHPFUI\ConstantContact\DateTime $completed_at Timestamp showing when we completed processing the activity, in ISO-8601 format.
12-
* @var \PHPFUI\ConstantContact\DateTime $created_at Timestamp showing when we created the activity, in ISO-8601 format.
13-
* @var \PHPFUI\ConstantContact\DateTime $updated_at Timestamp showing when we last updated the activity, in ISO-8601 format.
14-
* @var string $source_file_name Name of the file used for an add_contacts activity.
15-
* @var int $percent_done Shows the percent done for an activity that we are still processing.
16-
* @var array $activity_errors Array of messages describing the errors that occurred.
17-
* @var \PHPFUI\ConstantContact\Definition\ActivityStatus $status
18-
* @var \PHPFUI\ConstantContact\Definition\ActivityStatusExportLink $_links
8+
* @property \PHPFUI\ConstantContact\UUID $activity_id Unique ID for the activity.
9+
* @property string $state The state of the request: initialized - request has been received processing - request is being processed completed - job completed cancelled - request was cancelled failed - job failed to complete timed_out - the request timed out before completing
10+
* @property \PHPFUI\ConstantContact\DateTime $started_at Timestamp showing when we began processing the activity request, in ISO-8601 format.
11+
* @property \PHPFUI\ConstantContact\DateTime $completed_at Timestamp showing when we completed processing the activity, in ISO-8601 format.
12+
* @property \PHPFUI\ConstantContact\DateTime $created_at Timestamp showing when we created the activity, in ISO-8601 format.
13+
* @property \PHPFUI\ConstantContact\DateTime $updated_at Timestamp showing when we last updated the activity, in ISO-8601 format.
14+
* @property string $source_file_name Name of the file used for an add_contacts activity.
15+
* @property int $percent_done Shows the percent done for an activity that we are still processing.
16+
* @property array $activity_errors Array of messages describing the errors that occurred.
17+
* @property \PHPFUI\ConstantContact\Definition\ActivityStatus $status
18+
* @property \PHPFUI\ConstantContact\Definition\ActivityStatusExportLink $_links
1919
*/
2020
class Activity extends \PHPFUI\ConstantContact\Definition\Base
2121
{

src/ConstantContact/Definition/ActivityDeleteListResponse.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @var \PHPFUI\ConstantContact\UUID $activity_id Unique ID for the delete list batch job
9-
* @var string $state The state of the delete list request: processing - request is being processed completed - job completed cancelled - request was cancelled failed - job failed to complete timed_out - the request timed out before completing
10-
* @var \PHPFUI\ConstantContact\DateTime $created_at Date and time that the request was received, in ISO-8601 formmat.
11-
* @var \PHPFUI\ConstantContact\DateTime $updated_at Date and time that the request status was updated, in ISO-8601 format.
12-
* @var int $percent_done Job completion percentage
13-
* @var array $activity_errors Array of messages describing the errors that occurred.
14-
* @var \PHPFUI\ConstantContact\Definition\Link $_links
8+
* @property \PHPFUI\ConstantContact\UUID $activity_id Unique ID for the delete list batch job
9+
* @property string $state The state of the delete list request: processing - request is being processed completed - job completed cancelled - request was cancelled failed - job failed to complete timed_out - the request timed out before completing
10+
* @property \PHPFUI\ConstantContact\DateTime $created_at Date and time that the request was received, in ISO-8601 formmat.
11+
* @property \PHPFUI\ConstantContact\DateTime $updated_at Date and time that the request status was updated, in ISO-8601 format.
12+
* @property int $percent_done Job completion percentage
13+
* @property array $activity_errors Array of messages describing the errors that occurred.
14+
* @property \PHPFUI\ConstantContact\Definition\Link $_links
1515
*/
1616
class ActivityDeleteListResponse extends \PHPFUI\ConstantContact\Definition\Base
1717
{

src/ConstantContact/Definition/ActivityDeleteStatus.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @var \PHPFUI\ConstantContact\UUID $activity_id Unique ID for the activity.
9-
* @var string $state The state of the request: initialized - request has been received processing - request is being processed completed - job completed cancelled - request was cancelled failed - job failed to complete timed_out - the request timed out before completing
10-
* @var \PHPFUI\ConstantContact\DateTime $started_at Timestamp showing when we began processing the activity request, in ISO-8601 format.
11-
* @var \PHPFUI\ConstantContact\DateTime $completed_at Timestamp showing when we completed processing the activity, in ISO-8601 format.
12-
* @var \PHPFUI\ConstantContact\DateTime $created_at Timestamp showing when we created the activity, in ISO-8601 format.
13-
* @var \PHPFUI\ConstantContact\DateTime $updated_at Timestamp showing when we last updated the activity, in ISO-8601 format.
14-
* @var int $percent_done Shows the percent done for an activity that we are still processing.
15-
* @var array $activity_errors Array of messages describing the errors that occurred.
16-
* @var \PHPFUI\ConstantContact\Definition\Status $status
17-
* @var \PHPFUI\ConstantContact\Definition\Link $_links
8+
* @property \PHPFUI\ConstantContact\UUID $activity_id Unique ID for the activity.
9+
* @property string $state The state of the request: initialized - request has been received processing - request is being processed completed - job completed cancelled - request was cancelled failed - job failed to complete timed_out - the request timed out before completing
10+
* @property \PHPFUI\ConstantContact\DateTime $started_at Timestamp showing when we began processing the activity request, in ISO-8601 format.
11+
* @property \PHPFUI\ConstantContact\DateTime $completed_at Timestamp showing when we completed processing the activity, in ISO-8601 format.
12+
* @property \PHPFUI\ConstantContact\DateTime $created_at Timestamp showing when we created the activity, in ISO-8601 format.
13+
* @property \PHPFUI\ConstantContact\DateTime $updated_at Timestamp showing when we last updated the activity, in ISO-8601 format.
14+
* @property int $percent_done Shows the percent done for an activity that we are still processing.
15+
* @property array $activity_errors Array of messages describing the errors that occurred.
16+
* @property \PHPFUI\ConstantContact\Definition\Status $status
17+
* @property \PHPFUI\ConstantContact\Definition\Link $_links
1818
*/
1919
class ActivityDeleteStatus extends \PHPFUI\ConstantContact\Definition\Base
2020
{

src/ConstantContact/Definition/ActivityErrors.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @var string $message Message describing the error condition.
8+
* @property string $message Message describing the error condition.
99
*/
1010
class ActivityErrors extends \PHPFUI\ConstantContact\Definition\Base
1111
{

src/ConstantContact/Definition/ActivityExportStatus.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @var \PHPFUI\ConstantContact\UUID $activity_id Unique ID for the activity.
9-
* @var string $state The state of the request: initialized - request has been received processing - request is being processed completed - job completed cancelled - request was cancelled failed - job failed to complete timed_out - the request timed out before completing
10-
* @var \PHPFUI\ConstantContact\DateTime $started_at Timestamp showing when we began processing the activity request, in ISO-8601 format.
11-
* @var \PHPFUI\ConstantContact\DateTime $completed_at Timestamp showing when we completed processing the activity, in ISO-8601 format.
12-
* @var \PHPFUI\ConstantContact\DateTime $created_at Timestamp showing when we created the activity, in ISO-8601 format.
13-
* @var \PHPFUI\ConstantContact\DateTime $updated_at Timestamp showing when we last updated the activity, in ISO-8601 format.
14-
* @var int $percent_done Shows the percent done for an activity that we are still processing.
15-
* @var array $activity_errors Array of messages describing the errors that occurred.
16-
* @var \PHPFUI\ConstantContact\Definition\Status $status
17-
* @var \PHPFUI\ConstantContact\Definition\ActivityStatusExportLink $_links
8+
* @property \PHPFUI\ConstantContact\UUID $activity_id Unique ID for the activity.
9+
* @property string $state The state of the request: initialized - request has been received processing - request is being processed completed - job completed cancelled - request was cancelled failed - job failed to complete timed_out - the request timed out before completing
10+
* @property \PHPFUI\ConstantContact\DateTime $started_at Timestamp showing when we began processing the activity request, in ISO-8601 format.
11+
* @property \PHPFUI\ConstantContact\DateTime $completed_at Timestamp showing when we completed processing the activity, in ISO-8601 format.
12+
* @property \PHPFUI\ConstantContact\DateTime $created_at Timestamp showing when we created the activity, in ISO-8601 format.
13+
* @property \PHPFUI\ConstantContact\DateTime $updated_at Timestamp showing when we last updated the activity, in ISO-8601 format.
14+
* @property int $percent_done Shows the percent done for an activity that we are still processing.
15+
* @property array $activity_errors Array of messages describing the errors that occurred.
16+
* @property \PHPFUI\ConstantContact\Definition\Status $status
17+
* @property \PHPFUI\ConstantContact\Definition\ActivityStatusExportLink $_links
1818
*/
1919
class ActivityExportStatus extends \PHPFUI\ConstantContact\Definition\Base
2020
{

src/ConstantContact/Definition/ActivityGeneric.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @var string $activity_id The ID that uniquely identifies the activity.
9-
* @var string $state The processing state for the activity.
10-
* @var \PHPFUI\ConstantContact\DateTime $created_at The system generated date and time that the resource was created, in ISO-8601 format.
11-
* @var \PHPFUI\ConstantContact\DateTime $updated_at The system generated date and time that the resource was last updated, in ISO-8601 format.
12-
* @var int $percent_done The percentage complete for the specified activity.
13-
* @var array<\PHPFUI\ConstantContact\Definition\ActivityErrors> $activity_errors An array of error messages if errors occurred for a specified activity. The system returns an empty array if no errors occur.
14-
* @var \PHPFUI\ConstantContact\Definition\ActivityGenericStatus $status
15-
* @var \PHPFUI\ConstantContact\Definition\ActivityLinks2 $_links
8+
* @property string $activity_id The ID that uniquely identifies the activity.
9+
* @property string $state The processing state for the activity.
10+
* @property \PHPFUI\ConstantContact\DateTime $created_at The system generated date and time that the resource was created, in ISO-8601 format.
11+
* @property \PHPFUI\ConstantContact\DateTime $updated_at The system generated date and time that the resource was last updated, in ISO-8601 format.
12+
* @property int $percent_done The percentage complete for the specified activity.
13+
* @property array<\PHPFUI\ConstantContact\Definition\ActivityErrors> $activity_errors An array of error messages if errors occurred for a specified activity. The system returns an empty array if no errors occur.
14+
* @property \PHPFUI\ConstantContact\Definition\ActivityGenericStatus $status
15+
* @property \PHPFUI\ConstantContact\Definition\ActivityLinks2 $_links
1616
*/
1717
class ActivityGeneric extends \PHPFUI\ConstantContact\Definition\Base
1818
{

src/ConstantContact/Definition/ActivityGenericStatus.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
namespace PHPFUI\ConstantContact\Definition;
66

77
/**
8-
* @var int $items_total_count The total number of tags that this activity will delete.
9-
* @var int $items_completed_count The number of tags that this activity has currently deleted.
8+
* @property int $items_total_count The total number of tags that this activity will delete.
9+
* @property int $items_completed_count The number of tags that this activity has currently deleted.
1010
*/
1111
class ActivityGenericStatus extends \PHPFUI\ConstantContact\Definition\Base
1212
{

0 commit comments

Comments
 (0)