mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
feat(router): collect customer address details based on business profile config regardless of connector required fields (#5418)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -1920,14 +1920,26 @@ pub struct BusinessProfileCreate {
|
||||
/// Whether to use the billing details passed when creating the intent as payment method billing
|
||||
pub use_billing_as_payment_method_billing: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet connector (Eg. Apple Pay, Google Pay, etc.)
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet
|
||||
/// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub collect_shipping_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet connector (Eg. Apple Pay, Google Pay, etc.)
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet
|
||||
/// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub collect_billing_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet
|
||||
/// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub always_collect_shipping_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet
|
||||
/// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub always_collect_billing_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// Indicates if the MIT (merchant initiated transaction) payments can be made connector
|
||||
/// agnostic, i.e., MITs may be processed through different connector than CIT (customer
|
||||
/// initiated transaction) based on the routing rules.
|
||||
@ -2003,13 +2015,25 @@ pub struct BusinessProfileCreate {
|
||||
/// Whether to use the billing details passed when creating the intent as payment method billing
|
||||
pub use_billing_as_payment_method_billing: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet connector (Eg. Apple Pay, Google Pay, etc.)
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet
|
||||
/// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub collect_shipping_details_from_wallet_connector: Option<bool>,
|
||||
pub collect_shipping_details_from_wallet_connector_if_required: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet connector (Eg. Apple Pay, Google Pay, etc.)
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet
|
||||
/// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub collect_billing_details_from_wallet_connector: Option<bool>,
|
||||
pub collect_billing_details_from_wallet_connector_if_required: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet
|
||||
/// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub always_collect_shipping_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet
|
||||
/// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub always_collect_billing_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// Indicates if the MIT (merchant initiated transaction) payments can be made connector
|
||||
/// agnostic, i.e., MITs may be processed through different connector than CIT (customer
|
||||
@ -2103,14 +2127,26 @@ pub struct BusinessProfileResponse {
|
||||
/// Merchant's config to support extended card info feature
|
||||
pub extended_card_info_config: Option<ExtendedCardInfoConfig>,
|
||||
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet connector (Eg. Apple Pay, Google Pay, etc.)
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet
|
||||
/// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub collect_shipping_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet connector (Eg. Apple Pay, Google Pay, etc.)
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet
|
||||
/// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub collect_billing_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet
|
||||
/// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub always_collect_shipping_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet
|
||||
/// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub always_collect_billing_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// Indicates if the MIT (merchant initiated transaction) payments can be made connector
|
||||
/// agnostic, i.e., MITs may be processed through different connector than CIT (customer
|
||||
/// initiated transaction) based on the routing rules.
|
||||
@ -2183,13 +2219,25 @@ pub struct BusinessProfileResponse {
|
||||
/// Merchant's config to support extended card info feature
|
||||
pub extended_card_info_config: Option<ExtendedCardInfoConfig>,
|
||||
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet connector (Eg. Apple Pay, Google Pay, etc.)
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet
|
||||
/// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub collect_shipping_details_from_wallet_connector: Option<bool>,
|
||||
pub collect_shipping_details_from_wallet_connector_if_required: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet connector (Eg. Apple Pay, Google Pay, etc.)
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet
|
||||
/// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub collect_billing_details_from_wallet_connector: Option<bool>,
|
||||
pub collect_billing_details_from_wallet_connector_if_required: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet
|
||||
/// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub always_collect_shipping_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet
|
||||
/// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub always_collect_billing_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// Indicates if the MIT (merchant initiated transaction) payments can be made connector
|
||||
/// agnostic, i.e., MITs may be processed through different connector than CIT (customer
|
||||
@ -2283,14 +2331,26 @@ pub struct BusinessProfileUpdate {
|
||||
// Whether to use the billing details passed when creating the intent as payment method billing
|
||||
pub use_billing_as_payment_method_billing: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet connector (Eg. Apple Pay, Google Pay, etc.)
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet
|
||||
/// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub collect_shipping_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet connector (Eg. Apple Pay, Google Pay, etc.)
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet
|
||||
/// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub collect_billing_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet
|
||||
/// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub always_collect_shipping_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet
|
||||
/// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub always_collect_billing_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// Indicates if the MIT (merchant initiated transaction) payments can be made connector
|
||||
/// agnostic, i.e., MITs may be processed through different connector than CIT (customer
|
||||
/// initiated transaction) based on the routing rules.
|
||||
@ -2363,13 +2423,25 @@ pub struct BusinessProfileUpdate {
|
||||
// Whether to use the billing details passed when creating the intent as payment method billing
|
||||
pub use_billing_as_payment_method_billing: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet connector (Eg. Apple Pay, Google Pay, etc.)
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet
|
||||
/// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub collect_shipping_details_from_wallet_connector: Option<bool>,
|
||||
pub collect_shipping_details_from_wallet_connector_if_required: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet connector (Eg. Apple Pay, Google Pay, etc.)
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet
|
||||
/// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub collect_billing_details_from_wallet_connector: Option<bool>,
|
||||
pub collect_billing_details_from_wallet_connector_if_required: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer shipping details needs to be collected from wallet
|
||||
/// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub always_collect_shipping_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// A boolean value to indicate if customer billing details needs to be collected from wallet
|
||||
/// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc)
|
||||
#[schema(default = false, example = false)]
|
||||
pub always_collect_billing_details_from_wallet_connector: Option<bool>,
|
||||
|
||||
/// Indicates if the MIT (merchant initiated transaction) payments can be made connector
|
||||
/// agnostic, i.e., MITs may be processed through different connector than CIT (customer
|
||||
|
||||
Reference in New Issue
Block a user