RecipientAutomaticAnticipationSettingsData.php 409 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Data\Pagarme\Request\RecipientRequestData;
  3. use App\Data\Pagarme\PagarmeData;
  4. final readonly class RecipientAutomaticAnticipationSettingsData extends PagarmeData
  5. {
  6. public function __construct(
  7. public bool $enabled,
  8. ) {}
  9. public function toArray(): array
  10. {
  11. return $this->filterFilledRecursive([
  12. 'enabled' => $this->enabled,
  13. ]);
  14. }
  15. }