mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
feat(core): add Mobile Payment (Direct Carrier Billing) as a payment method (#6196)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -226,6 +226,9 @@ pub enum FieldType {
|
||||
UserIban,
|
||||
BrowserLanguage,
|
||||
BrowserIp,
|
||||
UserMsisdn,
|
||||
UserClientIdentifier,
|
||||
OrderDetailsProductName,
|
||||
}
|
||||
|
||||
impl FieldType {
|
||||
@ -316,6 +319,9 @@ impl PartialEq for FieldType {
|
||||
(Self::UserCpf, Self::UserCpf) => true,
|
||||
(Self::UserCnpj, Self::UserCnpj) => true,
|
||||
(Self::LanguagePreference { .. }, Self::LanguagePreference { .. }) => true,
|
||||
(Self::UserMsisdn, Self::UserMsisdn) => true,
|
||||
(Self::UserClientIdentifier, Self::UserClientIdentifier) => true,
|
||||
(Self::OrderDetailsProductName, Self::OrderDetailsProductName) => true,
|
||||
_unused => false,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user