Skip to content

Commit 2b657d1

Browse files
committed
V21.11.1 - 2021-11-09
1 parent ebb55b3 commit 2b657d1

33 files changed

+33
-33
lines changed

src/ConstantContact/V3/Account/Emails.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@ public function get(?string $confirm_status = null, ?string $role_code = null, ?
7575
*/
7676
public function post(\PHPFUI\ConstantContact\Definition\AccountEmailInput $body) : array
7777
{
78-
return $this->doPost(['body' => $body, ]);
78+
return $this->doPost(['body' => $body->getData(), ]);
7979
}
8080
}

src/ConstantContact/V3/Account/Summary.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ public function get(?string $extra_fields = null) : array
5555
*/
5656
public function put(\PHPFUI\ConstantContact\Definition\CustomerPut $body) : array
5757
{
58-
return $this->doPut(['body' => $body, ]);
58+
return $this->doPut(['body' => $body->getData(), ]);
5959
}
6060
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ public function get() : array
4646
*/
4747
public function put(\PHPFUI\ConstantContact\Definition\AccountPhysicalAddress $body) : array
4848
{
49-
return $this->doPut(['body' => $body, ]);
49+
return $this->doPut(['body' => $body->getData(), ]);
5050
}
5151
}

src/ConstantContact/V3/Activities/AddListMemberships.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
2626
*/
2727
public function post(\PHPFUI\ConstantContact\Definition\ListActivityAddContacts $body) : array
2828
{
29-
return $this->doPost(['body' => $body, ]);
29+
return $this->doPost(['body' => $body->getData(), ]);
3030
}
3131
}

src/ConstantContact/V3/Activities/ContactDelete.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
2828
*/
2929
public function post(\PHPFUI\ConstantContact\Definition\ContactDelete $body) : array
3030
{
31-
return $this->doPost(['body' => $body, ]);
31+
return $this->doPost(['body' => $body->getData(), ]);
3232
}
3333
}

src/ConstantContact/V3/Activities/ContactExports.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
2424
*/
2525
public function post(\PHPFUI\ConstantContact\Definition\ContactsExport $body) : array
2626
{
27-
return $this->doPost(['body' => $body, ]);
27+
return $this->doPost(['body' => $body->getData(), ]);
2828
}
2929
}

src/ConstantContact/V3/Activities/ContactsJsonImport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
4141
*/
4242
public function post(\PHPFUI\ConstantContact\Definition\ContactsJsonImport $body) : array
4343
{
44-
return $this->doPost(['body' => $body, ]);
44+
return $this->doPost(['body' => $body->getData(), ]);
4545
}
4646
}

src/ConstantContact/V3/Activities/ContactsTaggingsAdd.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
3434
*/
3535
public function post(\PHPFUI\ConstantContact\Definition\TagAddRemoveContacts $body) : array
3636
{
37-
return $this->doPost(['body' => $body, ]);
37+
return $this->doPost(['body' => $body->getData(), ]);
3838
}
3939
}

src/ConstantContact/V3/Activities/ContactsTaggingsRemove.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
3434
*/
3535
public function post(\PHPFUI\ConstantContact\Definition\TagAddRemoveContacts $body) : array
3636
{
37-
return $this->doPost(['body' => $body, ]);
37+
return $this->doPost(['body' => $body->getData(), ]);
3838
}
3939
}

src/ConstantContact/V3/Activities/ContactsTagsDelete.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
2525
*/
2626
public function post(\PHPFUI\ConstantContact\Definition\TagIdList500Limit $body) : array
2727
{
28-
return $this->doPost(['body' => $body, ]);
28+
return $this->doPost(['body' => $body->getData(), ]);
2929
}
3030
}

0 commit comments

Comments
 (0)