Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check Payment - New Events #266

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
69 changes: 45 additions & 24 deletions unit/models/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,43 +197,60 @@ class CheckPaymentPendingEvent(BaseEvent):
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentPendingEvent(_id, _type, attributes, relationships)

class CheckPaymentProcessedEvent(BaseEvent):

class CheckPaymentRejectedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentProcessedEvent(_id, _type, attributes, relationships)
return CheckPaymentRejectedEvent(_id, _type, attributes, relationships)


class CheckPaymentReturnedEvent(BaseEvent):
class CheckPaymentInProductionEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentReturnedEvent(_id, _type, attributes, relationships)
return CheckPaymentInProductionEvent(_id, _type, attributes, relationships)


class CheckPaymentPendingEvent(BaseEvent):
class CheckPaymentInDeliveryEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentPendingEvent(_id, _type, attributes, relationships)
return CheckPaymentInDeliveryEvent(_id, _type, attributes, relationships)


EventDTO = Union[AccountClosedEvent, AccountFrozenEvent, ApplicationDeniedEvent, ApplicationPendingReviewEvent,
ApplicationAwaitingDocumentsEvent, AuthorizationCreatedEvent, AuthorizationRequestApprovedEvent,
AuthorizationRequestDeclinedEvent, AuthorizationRequestPendingEvent, CardActivatedEvent,
CardStatusChangedEvent, CheckDepositCreatedEvent, CheckDepositClearingEvent, CheckDepositSentEvent,
CheckDepositReturnedEvent, CustomerCreatedEvent, DocumentApprovedEvent, DocumentRejectedEvent,
PaymentClearingEvent, PaymentSentEvent, PaymentReturnedEvent, StatementsCreatedEvent,
TransactionCreatedEvent, AccountReopenedEvent, CheckPaymentCreatedEvent,
CheckPaymentMarkedForReturnEvent, CheckPaymentProcessedEvent, CheckPaymentReturnedEvent,
CheckPaymentPendingEvent]
class CheckPaymentDeliveredEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentDeliveredEvent(_id, _type, attributes, relationships)


def events_mapper(_id, _type, attributes, relationships):
c = globals()
dot = _type.index(".")
c_name = _type[0].upper() + _type[1:dot] + _type[dot+1].upper() + _type[dot+2:] + "Event"
if c_name in c.keys():
return c[c_name].from_json_api(_id, _type, attributes, relationships)
else:
return RawUnitObject(_id, _type, attributes, relationships)
class CheckPaymentReturnToSenderEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentReturnToSenderEvent(_id, _type, attributes, relationships)


class CheckPaymentCanceledEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentCanceledEvent(_id, _type, attributes, relationships)


class CheckPaymentDeliveryStatusChangedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentDeliveryStatusChangedEvent(_id, _type, attributes, relationships)


class CheckPaymentAdditionalVerificationRequiredEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentAdditionalVerificationRequiredEvent(_id, _type, attributes, relationships)


class CheckPaymentAdditionalVerificationApprovedRequiredEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentAdditionalVerificationApprovedRequiredEvent(_id, _type, attributes, relationships)


class TaxFormCreatedEvent(BaseEvent):
@staticmethod
Expand All @@ -255,7 +272,11 @@ def from_json_api(_id, _type, attributes, relationships):
PaymentClearingEvent, PaymentSentEvent, PaymentReturnedEvent, StatementsCreatedEvent,
TransactionCreatedEvent, AccountReopenedEvent, CheckPaymentCreatedEvent,
CheckPaymentMarkedForReturnEvent, CheckPaymentProcessedEvent, CheckPaymentReturnedEvent,
CheckPaymentPendingEvent, TaxFormCreatedEvent, TaxFormUpdatedEvent]
CheckPaymentRejectedEvent, CheckPaymentInProductionEvent, CheckPaymentInDeliveryEvent,
CheckPaymentDeliveredEvent, CheckPaymentReturnToSenderEvent, CheckPaymentCanceledEvent,
CheckPaymentDeliveryStatusChangedEvent, CheckPaymentAdditionalVerificationRequiredEvent,
CheckPaymentAdditionalVerificationApprovedRequiredEvent, CheckPaymentPendingEvent,
TaxFormCreatedEvent, TaxFormUpdatedEvent]


def events_mapper(_id, _type, attributes, relationships):
Expand Down
Loading