feat(connector): [Adyen] Add support for gift cards balance (#1672)

This commit is contained in:
Sangamesh Kulkarni
2023-08-03 16:36:26 +05:30
committed by GitHub
parent 2dec2ca50b
commit c4796ffdb7
16 changed files with 373 additions and 44 deletions

View File

@ -313,6 +313,8 @@ pub enum ConnectorError {
FailedAtConnector { message: String, code: String },
#[error("Payment Method Type not found")]
MissingPaymentMethodType,
#[error("Balance in the payment method is low")]
InSufficientBalanceInPaymentMethod,
}
#[derive(Debug, thiserror::Error)]