mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 12:06:56 +08:00
feat(core): [Payouts] Add billing address to payout list (#5004)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -69,8 +69,15 @@ impl PayoutsInterface for MockDb {
|
||||
_merchant_id: &common_utils::id_type::MerchantId,
|
||||
_filters: &hyperswitch_domain_models::payouts::PayoutFetchConstraints,
|
||||
_storage_scheme: storage_enums::MerchantStorageScheme,
|
||||
) -> CustomResult<Vec<(Payouts, PayoutAttempt, Option<diesel_models::Customer>)>, StorageError>
|
||||
{
|
||||
) -> CustomResult<
|
||||
Vec<(
|
||||
Payouts,
|
||||
PayoutAttempt,
|
||||
Option<diesel_models::Customer>,
|
||||
Option<diesel_models::Address>,
|
||||
)>,
|
||||
StorageError,
|
||||
> {
|
||||
// TODO: Implement function for `MockDb`
|
||||
Err(StorageError::MockDbError)?
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user