Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ public function getNotificationResponse()
/**
* Sets notificationResponse
*
* @param string|null $notificationResponse Respond with any **2xx** HTTP status code to [accept the webhook](https://docs.adyen.com/development-resources/webhooks#accept-notifications).
* @param string|null $notificationResponse Respond with any **2xx** HTTP status code to [accept the webhook](https://docs.adyen.com/development-resources/webhooks/#accept-webhooks).
*
* @return self
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ public function getModelName()
public const TYPE_FRAUD = 'fraud';
public const TYPE_NOT_DELIVERED = 'notDelivered';
public const TYPE_DUPLICATE = 'duplicate';
public const TYPE_OTHER = 'other';

/**
* Gets allowable values of the enum
Expand All @@ -281,6 +282,7 @@ public function getTypeAllowableValues()
self::TYPE_FRAUD,
self::TYPE_NOT_DELIVERED,
self::TYPE_DUPLICATE,
self::TYPE_OTHER,
];
}
/**
Expand Down Expand Up @@ -422,7 +424,7 @@ public function getCreationDate()
/**
* Sets creationDate
*
* @param \DateTime|null $creationDate The date and time when the event was triggered, in ISO 8601 extended format. For example, **2020-12-18T10:15:30+01:00**.
* @param \DateTime|null $creationDate The date and time when the event was triggered, in ISO 8601 extended format. For example, **2025-03-19T10:15:30+01:00**.
*
* @return self
*/
Expand Down