You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ConstantContact/Definition/ContactList.php
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@
11
11
* @property bool $favorite Identifies whether or not the account has favorited the contact list.
12
12
* @property \PHPFUI\ConstantContact\DateTime $created_at System generated date and time that the resource was created, in ISO-8601 format.
13
13
* @property \PHPFUI\ConstantContact\DateTime $updated_at Date and time that the list was last updated, in ISO-8601 format. System generated.
14
+
* @property \PHPFUI\ConstantContact\DateTime $deleted_at If the list was deleted, this property shows the date and time it was deleted, in ISO-8601 format. System generated.
14
15
* @property int $membership_count The number of contacts in the contact list.
15
16
*/
16
17
class ContactList extends \PHPFUI\ConstantContact\Definition\Base
@@ -22,6 +23,7 @@ class ContactList extends \PHPFUI\ConstantContact\Definition\Base
Copy file name to clipboardExpand all lines: src/ConstantContact/V3/ContactLists.php
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,10 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
24
24
* @param int $limit Use to specify the number of results displayed per page of output, from 1 - 500, default = 50.
25
25
* @param bool $include_count Set `include_count` to `true` to return the total number of contact lists that meet your selection criteria.
26
26
* @param string $include_membership_count Use to include the number of contact members per list by setting the `include_membership_count` to either `active`, to count only active contacts, or `all` to include all contacts in the count.
27
+
* @param string $name Use to get a single list by entering the full name of the list.
28
+
* @param string $status Use to get lists by status. Accepts comma-separated status values.
thrownew \PHPFUI\ConstantContact\Exception\InvalidValue("Parameter status with value '{$status}' is not one of (" . \implode(', ', $validValues) . ') in ' . __METHOD__);
0 commit comments