feat(core): Add support to update card exp in update payment methods api (#9688)

This commit is contained in:
Mrudul Vajpayee
2025-10-07 17:11:04 +05:30
committed by GitHub
parent 7f6bed3f8e
commit ad37499785
4 changed files with 158 additions and 89 deletions

View File

@ -77,10 +77,10 @@ pub struct PaymentMethodsMigrateForm {
pub merchant_connector_ids: Option<text::Text<String>>,
}
struct MerchantConnectorValidator;
pub struct MerchantConnectorValidator;
impl MerchantConnectorValidator {
fn parse_comma_separated_ids(
pub fn parse_comma_separated_ids(
ids_string: &str,
) -> Result<Vec<common_utils::id_type::MerchantConnectorAccountId>, errors::ApiErrorResponse>
{