From 3cfe4c0d282d1014a5b5d344a32cbcf9838ad564 Mon Sep 17 00:00:00 2001 From: vincentbab Date: Thu, 23 May 2019 14:55:48 +0200 Subject: [PATCH] Added missing UBO related EventTypes --- MangoPay/EventType.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/MangoPay/EventType.php b/MangoPay/EventType.php index 9e0e2086..3a38ff2d 100644 --- a/MangoPay/EventType.php +++ b/MangoPay/EventType.php @@ -52,4 +52,9 @@ class EventType const PreAuthorizationPaymentExpired = "PREAUTHORIZATION_PAYMENT_EXPIRED"; const PreAuthorizationPaymentCanceled = "PREAUTHORIZATION_PAYMENT_CANCELED"; const PreAuthorizationPaymentValidated = "PREAUTHORIZATION_PAYMENT_VALIDATED"; + const UboDeclarationCreated = "UBO_DECLARATION_CREATED"; + const UboDeclarationValidationAsked = "UBO_DECLARATION_VALIDATION_ASKED"; + const UboDeclarationRefused = "UBO_DECLARATION_REFUSED"; + const UboDeclarationValidated = "UBO_DECLARATION_VALIDATED"; + const UboDeclarationIncomplete = "UBO_DECLARATION_INCOMPLETE"; }