mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 21:07:58 +08:00
Feat(connector): [Fiuu] Add DuitNow/FPX PaymentMethod (#5841)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -36,7 +36,7 @@ pub struct Connectors {
|
||||
pub ebanx: ConnectorParams,
|
||||
pub fiserv: ConnectorParams,
|
||||
pub fiservemea: ConnectorParams,
|
||||
pub fiuu: ConnectorParams,
|
||||
pub fiuu: ConnectorParamsWithThreeUrls,
|
||||
pub forte: ConnectorParams,
|
||||
pub globalpay: ConnectorParams,
|
||||
pub globepay: ConnectorParams,
|
||||
@ -166,3 +166,14 @@ pub struct ConnectorParamsWithSecondaryBaseUrl {
|
||||
/// secondary base url
|
||||
pub secondary_base_url: String,
|
||||
}
|
||||
/// struct ConnectorParamsWithThreeUrls
|
||||
#[derive(Debug, Deserialize, Clone, Default, router_derive::ConfigValidate)]
|
||||
#[serde(default)]
|
||||
pub struct ConnectorParamsWithThreeUrls {
|
||||
/// base url
|
||||
pub base_url: String,
|
||||
/// secondary base url
|
||||
pub secondary_base_url: String,
|
||||
/// third base url
|
||||
pub third_base_url: String,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user