refactor: retrieve extended card info config during business profile get call (#4784)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Chethan Rao
2024-05-28 20:03:07 +05:30
committed by GitHub
parent 7ca9c6e813
commit c362fd0532
3 changed files with 16 additions and 1 deletions

View File

@ -1010,6 +1010,9 @@ pub struct BusinessProfileResponse {
// Whether to use the billing details passed when creating the intent as payment method billing
pub use_billing_as_payment_method_billing: Option<bool>,
/// Merchant's config to support extended card info feature
pub extended_card_info_config: Option<ExtendedCardInfoConfig>,
}
#[derive(Clone, Debug, Deserialize, ToSchema, Serialize)]