Skip to content

Commit e909ced

Browse files
committed
V21.11.2 - 2021-11-10
1 parent 2ba6185 commit e909ced

File tree

208 files changed

+691
-397
lines changed

Some content is hidden

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

208 files changed

+691
-397
lines changed

src/ConstantContact/Definition/AccountCancellation.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
35
namespace PHPFUI\ConstantContact\Definition;
46

57
/**

src/ConstantContact/Definition/AccountEmailCreateResponse.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
35
namespace PHPFUI\ConstantContact\Definition;
46

57
/**

src/ConstantContact/Definition/AccountEmailInput.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
35
namespace PHPFUI\ConstantContact\Definition;
46

57
/**

src/ConstantContact/Definition/AccountPhysicalAddress.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
35
namespace PHPFUI\ConstantContact\Definition;
46

57
/**

src/ConstantContact/Definition/Activities.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
35
namespace PHPFUI\ConstantContact\Definition;
46

57
/**
@@ -11,7 +13,7 @@ class Activities extends \PHPFUI\ConstantContact\Definition\Base
1113

1214
protected static array $fields = [
1315
'activities' => 'array',
14-
'_links' => 'PHPFUI\\ConstantContact\\Definition\\PagingLinks',
16+
'_links' => '\PHPFUI\ConstantContact\Definition\PagingLinks',
1517

1618
];
1719
}

src/ConstantContact/Definition/Activity.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
<?php
22

3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
35
namespace PHPFUI\ConstantContact\Definition;
46

57
/**
6-
* @var PHPFUI\ConstantContact\UUID $activity_id Unique ID for the activity.
8+
* @var \PHPFUI\ConstantContact\UUID $activity_id Unique ID for the activity.
79
* @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
810
* @var DateTime $started_at Timestamp showing when we began processing the activity request, in ISO-8601 format.
911
* @var DateTime $completed_at Timestamp showing when we completed processing the activity, in ISO-8601 format.
@@ -18,7 +20,7 @@ class Activity extends \PHPFUI\ConstantContact\Definition\Base
1820
{
1921

2022
protected static array $fields = [
21-
'activity_id' => 'PHPFUI\ConstantContact\UUID',
23+
'activity_id' => '\PHPFUI\ConstantContact\UUID',
2224
'state' => ['initialized', 'processing', 'completed', 'cancelled', 'failed', 'timed_out'],
2325
'started_at' => 'DateTime',
2426
'completed_at' => 'DateTime',
@@ -27,8 +29,8 @@ class Activity extends \PHPFUI\ConstantContact\Definition\Base
2729
'source_file_name' => 'string',
2830
'percent_done' => 'int',
2931
'activity_errors' => 'array',
30-
'status' => 'PHPFUI\\ConstantContact\\Definition\\ActivityStatus',
31-
'_links' => 'PHPFUI\\ConstantContact\\Definition\\ActivityStatusExportLink',
32+
'status' => '\PHPFUI\ConstantContact\Definition\ActivityStatus',
33+
'_links' => '\PHPFUI\ConstantContact\Definition\ActivityStatusExportLink',
3234

3335
];
3436
}

src/ConstantContact/Definition/ActivityDeleteListResponse.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
<?php
22

3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
35
namespace PHPFUI\ConstantContact\Definition;
46

57
/**
6-
* @var PHPFUI\ConstantContact\UUID $activity_id Unique ID for the delete list batch job
8+
* @var \PHPFUI\ConstantContact\UUID $activity_id Unique ID for the delete list batch job
79
* @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
810
* @var DateTime $created_at Date and time that the request was received, in ISO-8601 formmat.
911
* @var DateTime $updated_at Date and time that the request status was updated, in ISO-8601 format.
@@ -15,13 +17,13 @@ class ActivityDeleteListResponse extends \PHPFUI\ConstantContact\Definition\Base
1517
{
1618

1719
protected static array $fields = [
18-
'activity_id' => 'PHPFUI\ConstantContact\UUID',
20+
'activity_id' => '\PHPFUI\ConstantContact\UUID',
1921
'state' => ['initialized', 'processing', 'completed', 'cancelled', 'failed', 'timed_out'],
2022
'created_at' => 'DateTime',
2123
'updated_at' => 'DateTime',
2224
'percent_done' => 'int',
2325
'activity_errors' => 'array',
24-
'_links' => 'PHPFUI\\ConstantContact\\Definition\\Link',
26+
'_links' => '\PHPFUI\ConstantContact\Definition\Link',
2527

2628
];
2729
}

src/ConstantContact/Definition/ActivityDeleteStatus.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
<?php
22

3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
35
namespace PHPFUI\ConstantContact\Definition;
46

57
/**
6-
* @var PHPFUI\ConstantContact\UUID $activity_id Unique ID for the activity.
8+
* @var \PHPFUI\ConstantContact\UUID $activity_id Unique ID for the activity.
79
* @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
810
* @var DateTime $started_at Timestamp showing when we began processing the activity request, in ISO-8601 format.
911
* @var DateTime $completed_at Timestamp showing when we completed processing the activity, in ISO-8601 format.
@@ -17,16 +19,16 @@ class ActivityDeleteStatus extends \PHPFUI\ConstantContact\Definition\Base
1719
{
1820

1921
protected static array $fields = [
20-
'activity_id' => 'PHPFUI\ConstantContact\UUID',
22+
'activity_id' => '\PHPFUI\ConstantContact\UUID',
2123
'state' => ['initialized', 'processing', 'completed', 'cancelled', 'failed', 'timed_out'],
2224
'started_at' => 'DateTime',
2325
'completed_at' => 'DateTime',
2426
'created_at' => 'DateTime',
2527
'updated_at' => 'DateTime',
2628
'percent_done' => 'int',
2729
'activity_errors' => 'array',
28-
'status' => 'PHPFUI\\ConstantContact\\Definition\\Status',
29-
'_links' => 'PHPFUI\\ConstantContact\\Definition\\Links',
30+
'status' => '\PHPFUI\ConstantContact\Definition\Status',
31+
'_links' => '\PHPFUI\ConstantContact\Definition\Links',
3032

3133
];
3234
}

src/ConstantContact/Definition/ActivityErrors.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
35
namespace PHPFUI\ConstantContact\Definition;
46

57
/**

src/ConstantContact/Definition/ActivityExportStatus.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
<?php
22

3+
// Generated file. Do not edit by hand. Use update.php in project root.
4+
35
namespace PHPFUI\ConstantContact\Definition;
46

57
/**
6-
* @var PHPFUI\ConstantContact\UUID $activity_id Unique ID for the activity.
8+
* @var \PHPFUI\ConstantContact\UUID $activity_id Unique ID for the activity.
79
* @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
810
* @var DateTime $started_at Timestamp showing when we began processing the activity request, in ISO-8601 format.
911
* @var DateTime $completed_at Timestamp showing when we completed processing the activity, in ISO-8601 format.
@@ -17,16 +19,16 @@ class ActivityExportStatus extends \PHPFUI\ConstantContact\Definition\Base
1719
{
1820

1921
protected static array $fields = [
20-
'activity_id' => 'PHPFUI\ConstantContact\UUID',
22+
'activity_id' => '\PHPFUI\ConstantContact\UUID',
2123
'state' => ['initialized', 'processing', 'completed', 'cancelled', 'failed', 'timed_out'],
2224
'started_at' => 'DateTime',
2325
'completed_at' => 'DateTime',
2426
'created_at' => 'DateTime',
2527
'updated_at' => 'DateTime',
2628
'percent_done' => 'int',
2729
'activity_errors' => 'array',
28-
'status' => 'PHPFUI\\ConstantContact\\Definition\\Status',
29-
'_links' => 'PHPFUI\\ConstantContact\\Definition\\ActivityStatusExportLink',
30+
'status' => '\PHPFUI\ConstantContact\Definition\Status',
31+
'_links' => '\PHPFUI\ConstantContact\Definition\ActivityStatusExportLink',
3032

3133
];
3234
}

0 commit comments

Comments
 (0)