Skip to content
For AI agents: the complete documentation index is available at llms.txt; this page is also available as Markdown at index.md.

Payment Method UpdatedAt Criterion

The UpdatedAt Search Criterion searches for payment methods based on the date when their status was updated.

Arguments

  • updatedAt - date to be matched, provided as a DateTimeInterface object
  • operator - optional operator string (EQ, GT, GTE, LT, LTE)

Example

PHP

1
2
3
4
5
6
7
use Ibexa\Contracts\Core\Repository\Values\Content\Query\Criterion;
use Ibexa\Contracts\Payment\PaymentMethod\PaymentMethodQuery;

$criteria = new \Ibexa\Contracts\Payment\PaymentMethod\Query\Criterion\UpdatedAt(
    new DateTime('2023-03-01')
);
$query = new PaymentMethodQuery($criteria);