id
stringlengths
20
153
type
stringclasses
1 value
granularity
stringclasses
14 values
content
stringlengths
16
84.3k
metadata
dict
hyperswitch_enum_api_models_-5147162440142038410
clm
enum
// hyperswitch/crates/api_models/src/routing.rs pub enum ContractBasedTimeScale { Day, Month, }
{ "chunk": null, "crate": "api_models", "enum_name": "ContractBasedTimeScale", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-6451133618143047493
clm
enum
// hyperswitch/crates/api_models/src/routing.rs pub enum RoutingApproach { Exploitation, Exploration, Elimination, ContractBased, Default, }
{ "chunk": null, "crate": "api_models", "enum_name": "RoutingApproach", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_3223647726350558460
clm
enum
// hyperswitch/crates/api_models/src/routing.rs pub enum RoutingResultSource { /// External Decision Engine DecisionEngine, /// Inbuilt Hyperswitch Routing Engine HyperswitchRouting, }
{ "chunk": null, "crate": "api_models", "enum_name": "RoutingResultSource", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_4049636221991286758
clm
enum
// hyperswitch/crates/api_models/src/routing.rs pub enum ValueType { /// Represents a number literal Number(u64), /// Represents an enum variant EnumVariant(String), /// Represents a Metadata variant MetadataVariant(MetadataValue), /// Represents a arbitrary String value StrValue(String), /// Represents a global reference, which is a reference to a global variable GlobalRef(String), /// Represents an array of numbers. This is basically used for /// "one of the given numbers" operations /// eg: payment.method.amount = (1, 2, 3) NumberArray(Vec<u64>), /// Similar to NumberArray but for enum variants /// eg: payment.method.cardtype = (debit, credit) EnumVariantArray(Vec<String>), /// Like a number array but can include comparisons. Useful for /// conditions like "500 < amount < 1000" /// eg: payment.amount = (> 500, < 1000) NumberComparisonArray(Vec<NumberComparison>), }
{ "chunk": null, "crate": "api_models", "enum_name": "ValueType", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-7236055835496323153
clm
enum
// hyperswitch/crates/api_models/src/routing.rs pub enum ComparisonType { Equal, NotEqual, LessThan, LessThanEqual, GreaterThan, GreaterThanEqual, }
{ "chunk": null, "crate": "api_models", "enum_name": "ComparisonType", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-2997046462374390071
clm
enum
// hyperswitch/crates/api_models/src/health_check.rs pub enum HealthCheckServices { /// Dynamic routing service DynamicRoutingService, }
{ "chunk": null, "crate": "api_models", "enum_name": "HealthCheckServices", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_4165590710573999903
clm
enum
// hyperswitch/crates/api_models/src/ephemeral_key.rs pub enum ResourceId { #[schema(value_type = String)] Customer(id_type::GlobalCustomerId), }
{ "chunk": null, "crate": "api_models", "enum_name": "ResourceId", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-3990352235834596934
clm
enum
// hyperswitch/crates/api_models/src/feature_matrix.rs pub enum PaymentMethodSpecificFeatures { /// Card specific features Card(CardSpecificFeatures), }
{ "chunk": null, "crate": "api_models", "enum_name": "PaymentMethodSpecificFeatures", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_9160514372359900496
clm
enum
// hyperswitch/crates/api_models/src/webhook_events.rs pub enum EventListConstraintsInternal { GenericFilter { created_after: Option<PrimitiveDateTime>, created_before: Option<PrimitiveDateTime>, limit: Option<i64>, offset: Option<i64>, event_classes: Option<HashSet<EventClass>>, event_types: Option<HashSet<EventType>>, is_delivered: Option<bool>, }, ObjectIdFilter { object_id: String, }, }
{ "chunk": null, "crate": "api_models", "enum_name": "EventListConstraintsInternal", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-2529932358699055036
clm
enum
// hyperswitch/crates/api_models/src/relay.rs pub enum RelayData { /// The data that is associated with a refund relay request Refund(RelayRefundRequestData), }
{ "chunk": null, "crate": "api_models", "enum_name": "RelayData", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_2633742824619453651
clm
enum
// hyperswitch/crates/api_models/src/admin.rs pub enum CardTestingGuardStatus { Enabled, Disabled, }
{ "chunk": null, "crate": "api_models", "enum_name": "CardTestingGuardStatus", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_1526347332915044270
clm
enum
// hyperswitch/crates/api_models/src/admin.rs pub enum AdditionalMerchantData { OpenBankingRecipientData(MerchantRecipientData), }
{ "chunk": null, "crate": "api_models", "enum_name": "AdditionalMerchantData", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_5805682897264860111
clm
enum
// hyperswitch/crates/api_models/src/admin.rs pub enum MerchantAccountData { /// IBAN-based account for international transfers Iban { /// International Bank Account Number (up to 34 characters) #[schema(value_type = String)] iban: Secret<String>, /// Account holder name name: String, #[schema(value_type = Option<String>)] #[serde(skip_serializing_if = "Option::is_none")] connector_recipient_id: Option<Secret<String>>, }, /// UK BACS payment system Bacs { /// 8-digit UK account number #[schema(value_type = String)] account_number: Secret<String>, /// 6-digit UK sort code #[schema(value_type = String, example = "123456")] sort_code: Secret<String>, /// Account holder name name: String, #[schema(value_type = Option<String>)] #[serde(skip_serializing_if = "Option::is_none")] connector_recipient_id: Option<Secret<String>>, }, /// UK Faster Payments (instant transfers) FasterPayments { /// 8-digit UK account number #[schema(value_type = String)] account_number: Secret<String>, /// 6-digit UK sort code #[schema(value_type = String)] sort_code: Secret<String>, /// Account holder name name: String, #[schema(value_type = Option<String>)] #[serde(skip_serializing_if = "Option::is_none")] connector_recipient_id: Option<Secret<String>>, }, /// SEPA payments (Euro zone) Sepa { /// IBAN for SEPA transfers #[schema(value_type = String, example = "FR1420041010050500013M02606")] iban: Secret<String>, /// Account holder name name: String, #[schema(value_type = Option<String>)] #[serde(skip_serializing_if = "Option::is_none")] connector_recipient_id: Option<Secret<String>>, }, /// SEPA Instant payments (10-second transfers) SepaInstant { /// IBAN for instant SEPA transfers #[schema(value_type = String, example = "DE89370400440532013000")] iban: Secret<String>, /// Account holder name name: String, #[schema(value_type = Option<String>)] #[serde(skip_serializing_if = "Option::is_none")] connector_recipient_id: Option<Secret<String>>, }, /// Polish Elixir payment system Elixir { /// Polish account number (26 digits) #[schema(value_type = String, example = "12345678901234567890123456")] account_number: Secret<String>, /// Polish IBAN (28 chars) #[schema(value_type = String, example = "PL27114020040000300201355387")] iban: Secret<String>, /// Account holder name name: String, #[schema(value_type = Option<String>)] #[serde(skip_serializing_if = "Option::is_none")] connector_recipient_id: Option<Secret<String>>, }, /// Swedish Bankgiro system Bankgiro { /// Bankgiro number (7-8 digits) #[schema(value_type = String, example = "5402-9656")] number: Secret<String>, /// Account holder name #[schema(example = "Erik Andersson")] name: String, #[schema(value_type = Option<String>)] #[serde(skip_serializing_if = "Option::is_none")] connector_recipient_id: Option<Secret<String>>, }, /// Swedish Plusgiro system Plusgiro { /// Plusgiro number (2-8 digits) #[schema(value_type = String, example = "4789-2")] number: Secret<String>, /// Account holder name #[schema(example = "Anna Larsson")] name: String, #[schema(value_type = Option<String>)] #[serde(skip_serializing_if = "Option::is_none")] connector_recipient_id: Option<Secret<String>>, }, }
{ "chunk": null, "crate": "api_models", "enum_name": "MerchantAccountData", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_2523434528347059879
clm
enum
// hyperswitch/crates/api_models/src/admin.rs pub enum MerchantRecipientData { #[schema(value_type= Option<String>)] ConnectorRecipientId(Secret<String>), #[schema(value_type= Option<String>)] WalletId(Secret<String>), AccountData(MerchantAccountData), }
{ "chunk": null, "crate": "api_models", "enum_name": "MerchantRecipientData", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_3005145011321094235
clm
enum
// hyperswitch/crates/api_models/src/admin.rs pub enum ConnectorAuthType { TemporaryAuth, HeaderKey { api_key: Secret<String>, }, BodyKey { api_key: Secret<String>, key1: Secret<String>, }, SignatureKey { api_key: Secret<String>, key1: Secret<String>, api_secret: Secret<String>, }, MultiAuthKey { api_key: Secret<String>, key1: Secret<String>, api_secret: Secret<String>, key2: Secret<String>, }, CurrencyAuthKey { auth_key_map: HashMap<common_enums::Currency, pii::SecretSerdeValue>, }, CertificateAuth { // certificate should be base64 encoded certificate: Secret<String>, // private_key should be base64 encoded private_key: Secret<String>, }, #[default] NoKey, }
{ "chunk": null, "crate": "api_models", "enum_name": "ConnectorAuthType", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-2888731825650015556
clm
enum
// hyperswitch/crates/api_models/src/admin.rs pub enum AcceptedCurrencies { #[schema(value_type = Vec<Currency>)] EnableOnly(Vec<api_enums::Currency>), #[schema(value_type = Vec<Currency>)] DisableOnly(Vec<api_enums::Currency>), AllAccepted, }
{ "chunk": null, "crate": "api_models", "enum_name": "AcceptedCurrencies", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-3364157671010049814
clm
enum
// hyperswitch/crates/api_models/src/connector_onboarding.rs pub enum ActionUrlResponse { PayPal(PayPalActionUrlResponse), }
{ "chunk": null, "crate": "api_models", "enum_name": "ActionUrlResponse", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-3134725473817540186
clm
enum
// hyperswitch/crates/api_models/src/connector_onboarding.rs pub enum OnboardingStatus { PayPal(PayPalOnboardingStatus), }
{ "chunk": null, "crate": "api_models", "enum_name": "OnboardingStatus", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_8460155093655828193
clm
enum
// hyperswitch/crates/api_models/src/connector_onboarding.rs pub enum PayPalOnboardingStatus { AccountNotFound, PaymentsNotReceivable, PpcpCustomDenied, MorePermissionsNeeded, EmailNotVerified, Success(PayPalOnboardingDone), ConnectorIntegrated(Box<admin::MerchantConnectorResponse>), }
{ "chunk": null, "crate": "api_models", "enum_name": "PayPalOnboardingStatus", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-3947499435607467122
clm
enum
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub enum BankDebitAdditionalData { Ach(Box<AchBankDebitAdditionalData>), Bacs(Box<BacsBankDebitAdditionalData>), Becs(Box<BecsBankDebitAdditionalData>), Sepa(Box<SepaBankDebitAdditionalData>), SepaGuarenteedDebit(Box<SepaBankDebitAdditionalData>), }
{ "chunk": null, "crate": "api_models", "enum_name": "BankDebitAdditionalData", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-5345696481222434937
clm
enum
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub enum BankRedirectDetails { BancontactCard(Box<BancontactBankRedirectAdditionalData>), Blik(Box<BlikBankRedirectAdditionalData>), Giropay(Box<GiropayBankRedirectAdditionalData>), }
{ "chunk": null, "crate": "api_models", "enum_name": "BankRedirectDetails", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-3524632439171319412
clm
enum
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub enum BankTransferAdditionalData { Ach {}, Sepa {}, Bacs {}, Multibanco {}, Permata {}, Bca {}, BniVa {}, BriVa {}, CimbVa {}, DanamonVa {}, MandiriVa {}, Pix(Box<PixBankTransferAdditionalData>), Pse {}, LocalBankTransfer(Box<LocalBankTransferAdditionalData>), InstantBankTransfer {}, InstantBankTransferFinland {}, InstantBankTransferPoland {}, IndonesianBankTransfer { #[schema(value_type = Option<BankNames>, example = "bri")] bank_name: Option<common_enums::BankNames>, }, }
{ "chunk": null, "crate": "api_models", "enum_name": "BankTransferAdditionalData", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_6590272286418816103
clm
enum
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub enum GiftCardAdditionalData { Givex(Box<GivexGiftCardAdditionalData>), PaySafeCard {}, BhnCardNetwork {}, }
{ "chunk": null, "crate": "api_models", "enum_name": "GiftCardAdditionalData", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_5952038190759394303
clm
enum
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub enum UpiAdditionalData { UpiCollect(Box<UpiCollectAdditionalData>), #[schema(value_type = UpiIntentData)] UpiIntent(Box<super::UpiIntentData>), #[schema(value_type = UpiQrData)] UpiQr(Box<super::UpiQrData>), }
{ "chunk": null, "crate": "api_models", "enum_name": "UpiAdditionalData", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_1229795068572267779
clm
enum
// hyperswitch/crates/api_models/src/user_role/role.rs pub enum RoleCheckType { Invite, Update, }
{ "chunk": null, "crate": "api_models", "enum_name": "RoleCheckType", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-2346839114186491298
clm
enum
// hyperswitch/crates/api_models/src/user_role/role.rs pub enum ListRolesResponse { WithGroups(Vec<RoleInfoResponseNew>), WithParentGroups(Vec<RoleInfoResponseWithParentsGroup>), }
{ "chunk": null, "crate": "api_models", "enum_name": "ListRolesResponse", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_4750608714937636287
clm
enum
// hyperswitch/crates/api_models/src/user/dashboard_metadata.rs pub enum SetMetaDataRequest { ProductionAgreement(ProductionAgreementRequest), SetupProcessor(SetupProcessor), ConfigureEndpoint, SetupComplete, FirstProcessorConnected(ProcessorConnected), SecondProcessorConnected(ProcessorConnected), ConfiguredRouting(ConfiguredRouting), TestPayment(TestPayment), IntegrationMethod(IntegrationMethod), ConfigurationType(ConfigurationType), IntegrationCompleted, SPRoutingConfigured(ConfiguredRouting), Feedback(Feedback), ProdIntent(ProdIntent), SPTestPayment, DownloadWoocom, ConfigureWoocom, SetupWoocomWebhook, IsMultipleConfiguration, #[serde(skip)] IsChangePasswordRequired, OnboardingSurvey(OnboardingSurvey), ReconStatus(ReconStatus), }
{ "chunk": null, "crate": "api_models", "enum_name": "SetMetaDataRequest", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-7326054124111858655
clm
enum
// hyperswitch/crates/api_models/src/user/dashboard_metadata.rs pub enum ConfigurationType { Single, Multiple, }
{ "chunk": null, "crate": "api_models", "enum_name": "ConfigurationType", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-1489106004131905829
clm
enum
// hyperswitch/crates/api_models/src/user/dashboard_metadata.rs pub enum GetMetaDataRequest { ProductionAgreement, SetupProcessor, ConfigureEndpoint, SetupComplete, FirstProcessorConnected, SecondProcessorConnected, ConfiguredRouting, TestPayment, IntegrationMethod, ConfigurationType, IntegrationCompleted, StripeConnected, PaypalConnected, SPRoutingConfigured, Feedback, ProdIntent, SPTestPayment, DownloadWoocom, ConfigureWoocom, SetupWoocomWebhook, IsMultipleConfiguration, IsChangePasswordRequired, OnboardingSurvey, ReconStatus, }
{ "chunk": null, "crate": "api_models", "enum_name": "GetMetaDataRequest", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-2653700547604798200
clm
enum
// hyperswitch/crates/api_models/src/user/dashboard_metadata.rs pub enum GetMetaDataResponse { ProductionAgreement(bool), SetupProcessor(Option<SetupProcessor>), ConfigureEndpoint(bool), SetupComplete(bool), FirstProcessorConnected(Option<ProcessorConnected>), SecondProcessorConnected(Option<ProcessorConnected>), ConfiguredRouting(Option<ConfiguredRouting>), TestPayment(Option<TestPayment>), IntegrationMethod(Option<IntegrationMethod>), ConfigurationType(Option<ConfigurationType>), IntegrationCompleted(bool), StripeConnected(Option<ProcessorConnected>), PaypalConnected(Option<ProcessorConnected>), SPRoutingConfigured(Option<ConfiguredRouting>), Feedback(Option<Feedback>), ProdIntent(Option<ProdIntent>), SPTestPayment(bool), DownloadWoocom(bool), ConfigureWoocom(bool), SetupWoocomWebhook(bool), IsMultipleConfiguration(bool), IsChangePasswordRequired(bool), OnboardingSurvey(Option<OnboardingSurvey>), ReconStatus(Option<ReconStatus>), }
{ "chunk": null, "crate": "api_models", "enum_name": "GetMetaDataResponse", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-5396055275170193095
clm
enum
// hyperswitch/crates/api_models/src/errors/types.rs pub enum ErrorType { InvalidRequestError, RouterError, ConnectorError, }
{ "chunk": null, "crate": "api_models", "enum_name": "ErrorType", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_3229958009812985049
clm
enum
// hyperswitch/crates/api_models/src/errors/types.rs pub enum ApiErrorResponse { Unauthorized(ApiError), ForbiddenCommonResource(ApiError), ForbiddenPrivateResource(ApiError), Conflict(ApiError), Gone(ApiError), Unprocessable(ApiError), InternalServerError(ApiError), NotImplemented(ApiError), ConnectorError(ApiError, #[serde(skip_serializing)] StatusCode), NotFound(ApiError), MethodNotAllowed(ApiError), BadRequest(ApiError), DomainError(ApiError), }
{ "chunk": null, "crate": "api_models", "enum_name": "ApiErrorResponse", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_8143516194329629531
clm
enum
// hyperswitch/crates/api_models/src/analytics/payment_intents.rs pub enum PaymentIntentDimensions { #[strum(serialize = "status")] #[serde(rename = "status")] PaymentIntentStatus, Currency, ProfileId, Connector, #[strum(serialize = "authentication_type")] #[serde(rename = "authentication_type")] AuthType, PaymentMethod, PaymentMethodType, CardNetwork, MerchantId, #[strum(serialize = "card_last_4")] #[serde(rename = "card_last_4")] CardLast4, CardIssuer, ErrorReason, }
{ "chunk": null, "crate": "api_models", "enum_name": "PaymentIntentDimensions", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_8950943134511325157
clm
enum
// hyperswitch/crates/api_models/src/analytics/payment_intents.rs pub enum PaymentIntentMetrics { SuccessfulSmartRetries, TotalSmartRetries, SmartRetriedAmount, PaymentIntentCount, PaymentsSuccessRate, PaymentProcessedAmount, SessionizedSuccessfulSmartRetries, SessionizedTotalSmartRetries, SessionizedSmartRetriedAmount, SessionizedPaymentIntentCount, SessionizedPaymentsSuccessRate, SessionizedPaymentProcessedAmount, SessionizedPaymentsDistribution, }
{ "chunk": null, "crate": "api_models", "enum_name": "PaymentIntentMetrics", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-6352307204362739827
clm
enum
// hyperswitch/crates/api_models/src/analytics/api_event.rs pub enum QueryType { Payment { payment_id: common_utils::id_type::PaymentId, }, Refund { payment_id: common_utils::id_type::PaymentId, refund_id: String, }, Dispute { payment_id: common_utils::id_type::PaymentId, dispute_id: String, }, }
{ "chunk": null, "crate": "api_models", "enum_name": "QueryType", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_7036540692267088254
clm
enum
// hyperswitch/crates/api_models/src/analytics/api_event.rs pub enum ApiEventDimensions { // Do not change the order of these enums // Consult the Dashboard FE folks since these also affects the order of metrics on FE StatusCode, FlowType, ApiFlow, }
{ "chunk": null, "crate": "api_models", "enum_name": "ApiEventDimensions", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-6507856775189613705
clm
enum
// hyperswitch/crates/api_models/src/analytics/api_event.rs pub enum ApiEventMetrics { Latency, ApiCount, StatusCodeCount, }
{ "chunk": null, "crate": "api_models", "enum_name": "ApiEventMetrics", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_8857791238369177360
clm
enum
// hyperswitch/crates/api_models/src/analytics/refunds.rs pub enum RefundDimensions { Currency, RefundStatus, Connector, RefundType, ProfileId, RefundReason, RefundErrorMessage, }
{ "chunk": null, "crate": "api_models", "enum_name": "RefundDimensions", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_5822298008042780167
clm
enum
// hyperswitch/crates/api_models/src/analytics/refunds.rs pub enum RefundMetrics { RefundSuccessRate, RefundCount, RefundSuccessCount, RefundProcessedAmount, SessionizedRefundSuccessRate, SessionizedRefundCount, SessionizedRefundSuccessCount, SessionizedRefundProcessedAmount, SessionizedRefundReason, SessionizedRefundErrorMessage, }
{ "chunk": null, "crate": "api_models", "enum_name": "RefundMetrics", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_4352381407240090243
clm
enum
// hyperswitch/crates/api_models/src/analytics/refunds.rs pub enum RefundDistributions { #[strum(serialize = "refund_reason")] SessionizedRefundReason, #[strum(serialize = "refund_error_message")] SessionizedRefundErrorMessage, }
{ "chunk": null, "crate": "api_models", "enum_name": "RefundDistributions", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_3352314526342431287
clm
enum
// hyperswitch/crates/api_models/src/analytics/payments.rs pub enum PaymentDimensions { // Do not change the order of these enums // Consult the Dashboard FE folks since these also affects the order of metrics on FE Connector, PaymentMethod, PaymentMethodType, Currency, #[strum(serialize = "authentication_type")] #[serde(rename = "authentication_type")] AuthType, #[strum(serialize = "status")] #[serde(rename = "status")] PaymentStatus, ClientSource, ClientVersion, ProfileId, CardNetwork, MerchantId, #[strum(serialize = "card_last_4")] #[serde(rename = "card_last_4")] CardLast4, CardIssuer, ErrorReason, RoutingApproach, SignatureNetwork, IsIssuerRegulated, IsDebitRouted, }
{ "chunk": null, "crate": "api_models", "enum_name": "PaymentDimensions", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-342133329914555679
clm
enum
// hyperswitch/crates/api_models/src/analytics/payments.rs pub enum PaymentMetrics { PaymentSuccessRate, PaymentCount, PaymentSuccessCount, PaymentProcessedAmount, AvgTicketSize, RetriesCount, ConnectorSuccessRate, DebitRouting, SessionizedPaymentSuccessRate, SessionizedPaymentCount, SessionizedPaymentSuccessCount, SessionizedPaymentProcessedAmount, SessionizedAvgTicketSize, SessionizedRetriesCount, SessionizedConnectorSuccessRate, SessionizedDebitRouting, PaymentsDistribution, FailureReasons, }
{ "chunk": null, "crate": "api_models", "enum_name": "PaymentMetrics", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_7467233710418458497
clm
enum
// hyperswitch/crates/api_models/src/analytics/payments.rs pub enum PaymentDistributions { #[strum(serialize = "error_message")] PaymentErrorMessage, }
{ "chunk": null, "crate": "api_models", "enum_name": "PaymentDistributions", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-8669730921587349358
clm
enum
// hyperswitch/crates/api_models/src/analytics/auth_events.rs pub enum AuthEventDimensions { AuthenticationStatus, #[strum(serialize = "trans_status")] #[serde(rename = "trans_status")] TransactionStatus, AuthenticationType, ErrorMessage, AuthenticationConnector, MessageVersion, AcsReferenceNumber, Platform, Mcc, Currency, MerchantCountry, BillingCountry, ShippingCountry, IssuerCountry, EarliestSupportedVersion, LatestSupportedVersion, WhitelistDecision, DeviceManufacturer, DeviceType, DeviceBrand, DeviceOs, DeviceDisplay, BrowserName, BrowserVersion, IssuerId, SchemeName, ExemptionRequested, ExemptionAccepted, }
{ "chunk": null, "crate": "api_models", "enum_name": "AuthEventDimensions", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_394855612893138953
clm
enum
// hyperswitch/crates/api_models/src/analytics/auth_events.rs pub enum AuthEventMetrics { AuthenticationCount, AuthenticationAttemptCount, AuthenticationSuccessCount, ChallengeFlowCount, FrictionlessFlowCount, FrictionlessSuccessCount, ChallengeAttemptCount, ChallengeSuccessCount, AuthenticationErrorMessage, AuthenticationFunnel, AuthenticationExemptionApprovedCount, AuthenticationExemptionRequestedCount, }
{ "chunk": null, "crate": "api_models", "enum_name": "AuthEventMetrics", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-4736527356391556079
clm
enum
// hyperswitch/crates/api_models/src/analytics/auth_events.rs pub enum AuthEventFlows { IncomingWebhookReceive, PaymentsExternalAuthentication, }
{ "chunk": null, "crate": "api_models", "enum_name": "AuthEventFlows", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-3495874310554272239
clm
enum
// hyperswitch/crates/api_models/src/analytics/disputes.rs pub enum DisputeMetrics { DisputeStatusMetric, TotalAmountDisputed, TotalDisputeLostAmount, SessionizedDisputeStatusMetric, SessionizedTotalAmountDisputed, SessionizedTotalDisputeLostAmount, }
{ "chunk": null, "crate": "api_models", "enum_name": "DisputeMetrics", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_5106821452037622070
clm
enum
// hyperswitch/crates/api_models/src/analytics/disputes.rs pub enum DisputeDimensions { // Do not change the order of these enums // Consult the Dashboard FE folks since these also affects the order of metrics on FE Connector, DisputeStage, Currency, }
{ "chunk": null, "crate": "api_models", "enum_name": "DisputeDimensions", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_1572574789046164708
clm
enum
// hyperswitch/crates/api_models/src/analytics/frm.rs pub enum FrmTransactionType { #[default] PreFrm, PostFrm, }
{ "chunk": null, "crate": "api_models", "enum_name": "FrmTransactionType", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_965497590102917909
clm
enum
// hyperswitch/crates/api_models/src/analytics/frm.rs pub enum FrmDimensions { FrmStatus, FrmName, FrmTransactionType, }
{ "chunk": null, "crate": "api_models", "enum_name": "FrmDimensions", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-3318945564826584569
clm
enum
// hyperswitch/crates/api_models/src/analytics/frm.rs pub enum FrmMetrics { FrmTriggeredAttempts, FrmBlockedRate, }
{ "chunk": null, "crate": "api_models", "enum_name": "FrmMetrics", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-1906222526511301185
clm
enum
// hyperswitch/crates/api_models/src/analytics/active_payments.rs pub enum ActivePaymentsMetrics { ActivePayments, }
{ "chunk": null, "crate": "api_models", "enum_name": "ActivePaymentsMetrics", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_9023055914308405682
clm
enum
// hyperswitch/crates/api_models/src/analytics/search.rs pub enum SearchIndex { PaymentAttempts, PaymentIntents, Refunds, Disputes, SessionizerPaymentAttempts, SessionizerPaymentIntents, SessionizerRefunds, SessionizerDisputes, }
{ "chunk": null, "crate": "api_models", "enum_name": "SearchIndex", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_6243795971183527502
clm
enum
// hyperswitch/crates/api_models/src/analytics/search.rs pub enum SearchStatus { Success, Failure, }
{ "chunk": null, "crate": "api_models", "enum_name": "SearchStatus", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-5577651531091844875
clm
enum
// hyperswitch/crates/api_models/src/analytics/search.rs pub enum OpensearchOutput { Success(OpensearchSuccess), Error(OpensearchError), }
{ "chunk": null, "crate": "api_models", "enum_name": "OpensearchOutput", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_2500367716216465329
clm
enum
// hyperswitch/crates/api_models/src/analytics/sdk_events.rs pub enum SdkEventDimensions { // Do not change the order of these enums // Consult the Dashboard FE folks since these also affects the order of metrics on FE PaymentMethod, Platform, BrowserName, Source, Component, PaymentExperience, }
{ "chunk": null, "crate": "api_models", "enum_name": "SdkEventDimensions", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_6760970193792992674
clm
enum
// hyperswitch/crates/api_models/src/analytics/sdk_events.rs pub enum SdkEventMetrics { PaymentAttempts, PaymentMethodsCallCount, SdkRenderedCount, SdkInitiatedCount, PaymentMethodSelectedCount, PaymentDataFilledCount, AveragePaymentTime, LoadTime, }
{ "chunk": null, "crate": "api_models", "enum_name": "SdkEventMetrics", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_api_models_-2578507277025995871
clm
enum
// hyperswitch/crates/api_models/src/analytics/sdk_events.rs pub enum SdkEventNames { OrcaElementsCalled, AppRendered, PaymentMethodChanged, PaymentDataFilled, PaymentAttempt, PaymentMethodsCall, ConfirmCall, SessionsCall, CustomerPaymentMethodsCall, RedirectingUser, DisplayBankTransferInfoPage, DisplayQrCodeInfoPage, AuthenticationCall, AuthenticationCallInit, ThreeDsMethodCall, ThreeDsMethodResult, ThreeDsMethod, LoaderChanged, DisplayThreeDsSdk, ThreeDsSdkInit, AreqParamsGeneration, ChallengePresented, ChallengeComplete, }
{ "chunk": null, "crate": "api_models", "enum_name": "SdkEventNames", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_router_env_-6293807640907403270
clm
enum
// hyperswitch/crates/router_env/src/env.rs pub enum Env { /// Development environment. #[default] Development, /// Sandbox environment. Sandbox, /// Production environment. Production, }
{ "chunk": null, "crate": "router_env", "enum_name": "Env", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_router_env_-6776756528401031578
clm
enum
// hyperswitch/crates/router_env/src/logger/types.rs pub enum Tag { /// General. #[default] General, /// Redis: get. RedisGet, /// Redis: set. RedisSet, /// API: incoming web request. ApiIncomingRequest, /// API: outgoing web request. ApiOutgoingRequest, /// Data base: create. DbCreate, /// Data base: read. DbRead, /// Data base: updare. DbUpdate, /// Data base: delete. DbDelete, /// Begin Request BeginRequest, /// End Request EndRequest, /// Call initiated to connector. InitiatedToConnector, /// Event: general. Event, /// Compatibility Layer Request CompatibilityLayerRequest, }
{ "chunk": null, "crate": "router_env", "enum_name": "Tag", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_router_env_6363859089428879992
clm
enum
// hyperswitch/crates/router_env/src/logger/types.rs pub enum Flow { /// Health check HealthCheck, /// Deep health Check DeepHealthCheck, /// Organization create flow OrganizationCreate, /// Organization retrieve flow OrganizationRetrieve, /// Organization update flow OrganizationUpdate, /// Merchants account create flow. MerchantsAccountCreate, /// Merchants account retrieve flow. MerchantsAccountRetrieve, /// Merchants account update flow. MerchantsAccountUpdate, /// Merchants account delete flow. MerchantsAccountDelete, /// Merchant Connectors create flow. MerchantConnectorsCreate, /// Merchant Connectors retrieve flow. MerchantConnectorsRetrieve, /// Merchant account list MerchantAccountList, /// Merchant Connectors update flow. MerchantConnectorsUpdate, /// Merchant Connectors delete flow. MerchantConnectorsDelete, /// Merchant Connectors list flow. MerchantConnectorsList, /// Merchant Transfer Keys MerchantTransferKey, /// ConfigKey create flow. ConfigKeyCreate, /// ConfigKey fetch flow. ConfigKeyFetch, /// Enable platform account flow. EnablePlatformAccount, /// ConfigKey Update flow. ConfigKeyUpdate, /// ConfigKey Delete flow. ConfigKeyDelete, /// Customers create flow. CustomersCreate, /// Customers retrieve flow. CustomersRetrieve, /// Customers update flow. CustomersUpdate, /// Customers delete flow. CustomersDelete, /// Customers get mandates flow. CustomersGetMandates, /// Create an Ephemeral Key. EphemeralKeyCreate, /// Delete an Ephemeral Key. EphemeralKeyDelete, /// Mandates retrieve flow. MandatesRetrieve, /// Mandates revoke flow. MandatesRevoke, /// Mandates list flow. MandatesList, /// Payment methods create flow. PaymentMethodsCreate, /// Payment methods migrate flow. PaymentMethodsMigrate, /// Payment methods batch update flow. PaymentMethodsBatchUpdate, /// Payment methods list flow. PaymentMethodsList, /// Payment method save flow PaymentMethodSave, /// Customer payment methods list flow. CustomerPaymentMethodsList, /// Payment methods token data get flow. GetPaymentMethodTokenData, /// List Customers for a merchant CustomersList, ///List Customers for a merchant with constraints. CustomersListWithConstraints, /// Retrieve countries and currencies for connector and payment method ListCountriesCurrencies, /// Payment method create collect link flow. PaymentMethodCollectLink, /// Payment methods retrieve flow. PaymentMethodsRetrieve, /// Payment methods update flow. PaymentMethodsUpdate, /// Payment methods delete flow. PaymentMethodsDelete, /// Network token status check flow. NetworkTokenStatusCheck, /// Default Payment method flow. DefaultPaymentMethodsSet, /// Payments create flow. PaymentsCreate, /// Payments Retrieve flow. PaymentsRetrieve, /// Payments Retrieve force sync flow. PaymentsRetrieveForceSync, /// Payments Retrieve using merchant reference id PaymentsRetrieveUsingMerchantReferenceId, /// Payments update flow. PaymentsUpdate, /// Payments confirm flow. PaymentsConfirm, /// Payments capture flow. PaymentsCapture, /// Payments cancel flow. PaymentsCancel, /// Payments cancel post capture flow. PaymentsCancelPostCapture, /// Payments approve flow. PaymentsApprove, /// Payments reject flow. PaymentsReject, /// Payments Session Token flow PaymentsSessionToken, /// Payments start flow. PaymentsStart, /// Payments list flow. PaymentsList, /// Payments filters flow PaymentsFilters, /// Payments aggregates flow PaymentsAggregate, /// Payments Create Intent flow PaymentsCreateIntent, /// Payments Get Intent flow PaymentsGetIntent, /// Payments Update Intent flow PaymentsUpdateIntent, /// Payments confirm intent flow PaymentsConfirmIntent, /// Payments create and confirm intent flow PaymentsCreateAndConfirmIntent, /// Payment attempt list flow PaymentAttemptsList, #[cfg(feature = "payouts")] /// Payouts create flow PayoutsCreate, #[cfg(feature = "payouts")] /// Payouts retrieve flow. PayoutsRetrieve, #[cfg(feature = "payouts")] /// Payouts update flow. PayoutsUpdate, /// Payouts confirm flow. PayoutsConfirm, #[cfg(feature = "payouts")] /// Payouts cancel flow. PayoutsCancel, #[cfg(feature = "payouts")] /// Payouts fulfill flow. PayoutsFulfill, #[cfg(feature = "payouts")] /// Payouts list flow. PayoutsList, #[cfg(feature = "payouts")] /// Payouts filter flow. PayoutsFilter, /// Payouts accounts flow. PayoutsAccounts, /// Payout link initiate flow PayoutLinkInitiate, /// Payments Redirect flow PaymentsRedirect, /// Payemnts Complete Authorize Flow PaymentsCompleteAuthorize, /// Refunds create flow. RefundsCreate, /// Refunds retrieve flow. RefundsRetrieve, /// Refunds retrieve force sync flow. RefundsRetrieveForceSync, /// Refunds update flow. RefundsUpdate, /// Refunds list flow. RefundsList, /// Refunds filters flow RefundsFilters, /// Refunds aggregates flow RefundsAggregate, // Retrieve forex flow. RetrieveForexFlow, /// Toggles recon service for a merchant. ReconMerchantUpdate, /// Recon token request flow. ReconTokenRequest, /// Initial request for recon service. ReconServiceRequest, /// Recon token verification flow ReconVerifyToken, /// Routing create flow, RoutingCreateConfig, /// Routing link config RoutingLinkConfig, /// Routing link config RoutingUnlinkConfig, /// Routing retrieve config RoutingRetrieveConfig, /// Routing retrieve active config RoutingRetrieveActiveConfig, /// Routing retrieve default config RoutingRetrieveDefaultConfig, /// Routing retrieve dictionary RoutingRetrieveDictionary, /// Rule migration for decision-engine DecisionEngineRuleMigration, /// Routing update config RoutingUpdateConfig, /// Routing update default config RoutingUpdateDefaultConfig, /// Routing delete config RoutingDeleteConfig, /// Subscription create flow, CreateSubscription, /// Subscription get plans flow, GetPlansForSubscription, /// Subscription confirm flow, ConfirmSubscription, /// Subscription create and confirm flow, CreateAndConfirmSubscription, /// Get Subscription flow GetSubscription, /// Update Subscription flow UpdateSubscription, /// Get Subscription estimate flow GetSubscriptionEstimate, /// Create dynamic routing CreateDynamicRoutingConfig, /// Toggle dynamic routing ToggleDynamicRouting, /// Update dynamic routing config UpdateDynamicRoutingConfigs, /// Add record to blocklist AddToBlocklist, /// Delete record from blocklist DeleteFromBlocklist, /// List entries from blocklist ListBlocklist, /// Toggle blocklist for merchant ToggleBlocklistGuard, /// Incoming Webhook Receive IncomingWebhookReceive, /// Recovery incoming webhook receive RecoveryIncomingWebhookReceive, /// Validate payment method flow ValidatePaymentMethod, /// API Key create flow ApiKeyCreate, /// API Key retrieve flow ApiKeyRetrieve, /// API Key update flow ApiKeyUpdate, /// API Key revoke flow ApiKeyRevoke, /// API Key list flow ApiKeyList, /// Dispute Retrieve flow DisputesRetrieve, /// Dispute List flow DisputesList, /// Dispute Filters flow DisputesFilters, /// Cards Info flow CardsInfo, /// Create File flow CreateFile, /// Delete File flow DeleteFile, /// Retrieve File flow RetrieveFile, /// Dispute Evidence submission flow DisputesEvidenceSubmit, /// Create Config Key flow CreateConfigKey, /// Attach Dispute Evidence flow AttachDisputeEvidence, /// Delete Dispute Evidence flow DeleteDisputeEvidence, /// Disputes aggregate flow DisputesAggregate, /// Retrieve Dispute Evidence flow RetrieveDisputeEvidence, /// Invalidate cache flow CacheInvalidate, /// Payment Link Retrieve flow PaymentLinkRetrieve, /// payment Link Initiate flow PaymentLinkInitiate, /// payment Link Initiate flow PaymentSecureLinkInitiate, /// Payment Link List flow PaymentLinkList, /// Payment Link Status PaymentLinkStatus, /// Create a profile ProfileCreate, /// Update a profile ProfileUpdate, /// Retrieve a profile ProfileRetrieve, /// Delete a profile ProfileDelete, /// List all the profiles for a merchant ProfileList, /// Different verification flows Verification, /// Rust locker migration RustLockerMigration, /// Gsm Rule Creation flow GsmRuleCreate, /// Gsm Rule Retrieve flow GsmRuleRetrieve, /// Gsm Rule Update flow GsmRuleUpdate, /// Apple pay certificates migration ApplePayCertificatesMigration, /// Gsm Rule Delete flow GsmRuleDelete, /// Get data from embedded flow GetDataFromHyperswitchAiFlow, // List all chat interactions ListAllChatInteractions, /// User Sign Up UserSignUp, /// User Sign Up UserSignUpWithMerchantId, /// User Sign In UserSignIn, /// User transfer key UserTransferKey, /// User connect account UserConnectAccount, /// Upsert Decision Manager Config DecisionManagerUpsertConfig, /// Delete Decision Manager Config DecisionManagerDeleteConfig, /// Retrieve Decision Manager Config DecisionManagerRetrieveConfig, /// Manual payment fulfillment acknowledgement FrmFulfillment, /// Get connectors feature matrix FeatureMatrix, /// Change password flow ChangePassword, /// Signout flow Signout, /// Set Dashboard Metadata flow SetDashboardMetadata, /// Get Multiple Dashboard Metadata flow GetMultipleDashboardMetadata, /// Payment Connector Verify VerifyPaymentConnector, /// Internal user signup InternalUserSignup, /// Create tenant level user TenantUserCreate, /// Switch org SwitchOrg, /// Switch merchant v2 SwitchMerchantV2, /// Switch profile SwitchProfile, /// Get permission info GetAuthorizationInfo, /// Get Roles info GetRolesInfo, /// Get Parent Group Info GetParentGroupInfo, /// List roles v2 ListRolesV2, /// List invitable roles at entity level ListInvitableRolesAtEntityLevel, /// List updatable roles at entity level ListUpdatableRolesAtEntityLevel, /// Get role GetRole, /// Get parent info for role GetRoleV2, /// Get role from token GetRoleFromToken, /// Get resources and groups for role from token GetRoleFromTokenV2, /// Get parent groups info for role from token GetParentGroupsInfoForRoleFromToken, /// Update user role UpdateUserRole, /// Create merchant account for user in a org UserMerchantAccountCreate, /// Create Platform CreatePlatformAccount, /// Create Org in a given tenancy UserOrgMerchantCreate, /// Generate Sample Data GenerateSampleData, /// Delete Sample Data DeleteSampleData, /// Get details of a user GetUserDetails, /// Get details of a user role in a merchant account GetUserRoleDetails, /// PaymentMethodAuth Link token create PmAuthLinkTokenCreate, /// PaymentMethodAuth Exchange token create PmAuthExchangeToken, /// Get reset password link ForgotPassword, /// Reset password using link ResetPassword, /// Force set or force change password RotatePassword, /// Invite multiple users InviteMultipleUser, /// Reinvite user ReInviteUser, /// Accept invite from email AcceptInviteFromEmail, /// Delete user role DeleteUserRole, /// Incremental Authorization flow PaymentsIncrementalAuthorization, /// Extend Authorization flow PaymentsExtendAuthorization, /// Get action URL for connector onboarding GetActionUrl, /// Sync connector onboarding status SyncOnboardingStatus, /// Reset tracking id ResetTrackingId, /// Verify email Token VerifyEmail, /// Send verify email VerifyEmailRequest, /// Update user account details UpdateUserAccountDetails, /// Accept user invitation using entities AcceptInvitationsV2, /// Accept user invitation using entities before user login AcceptInvitationsPreAuth, /// Initiate external authentication for a payment PaymentsExternalAuthentication, /// Authorize the payment after external 3ds authentication PaymentsAuthorize, /// Create Role CreateRole, /// Create Role V2 CreateRoleV2, /// Update Role UpdateRole, /// User email flow start UserFromEmail, /// Begin TOTP TotpBegin, /// Reset TOTP TotpReset, /// Verify TOTP TotpVerify, /// Update TOTP secret TotpUpdate, /// Verify Access Code RecoveryCodeVerify, /// Generate or Regenerate recovery codes RecoveryCodesGenerate, /// Terminate two factor authentication TerminateTwoFactorAuth, /// Check 2FA status TwoFactorAuthStatus, /// Create user authentication method CreateUserAuthenticationMethod, /// Update user authentication method UpdateUserAuthenticationMethod, /// List user authentication methods ListUserAuthenticationMethods, /// Get sso auth url GetSsoAuthUrl, /// Signin with SSO SignInWithSso, /// Auth Select AuthSelect, /// List Orgs for user ListOrgForUser, /// List Merchants for user in org ListMerchantsForUserInOrg, /// List Profile for user in org and merchant ListProfileForUserInOrgAndMerchant, /// List Users in Org ListUsersInLineage, /// List invitations for user ListInvitationsForUser, /// Get theme using lineage GetThemeUsingLineage, /// Get theme using theme id GetThemeUsingThemeId, /// Upload file to theme storage UploadFileToThemeStorage, /// Create theme CreateTheme, /// Update theme UpdateTheme, /// Delete theme DeleteTheme, /// Create user theme CreateUserTheme, /// Update user theme UpdateUserTheme, /// Delete user theme DeleteUserTheme, /// Upload file to user theme storage UploadFileToUserThemeStorage, /// Get user theme using theme id GetUserThemeUsingThemeId, ///List All Themes In Lineage ListAllThemesInLineage, /// Get user theme using lineage GetUserThemeUsingLineage, /// List initial webhook delivery attempts WebhookEventInitialDeliveryAttemptList, /// List delivery attempts for a webhook event WebhookEventDeliveryAttemptList, /// Manually retry the delivery for a webhook event WebhookEventDeliveryRetry, /// Retrieve status of the Poll RetrievePollStatus, /// Toggles the extended card info feature in profile level ToggleExtendedCardInfo, /// Toggles the extended card info feature in profile level ToggleConnectorAgnosticMit, /// Get the extended card info associated to a payment_id GetExtendedCardInfo, /// Manually update the refund details like status, error code, error message etc. RefundsManualUpdate, /// Manually update the payment details like status, error code, error message etc. PaymentsManualUpdate, /// Dynamic Tax Calcultion SessionUpdateTaxCalculation, ProxyConfirmIntent, /// Payments post session tokens flow PaymentsPostSessionTokens, /// Payments Update Metadata PaymentsUpdateMetadata, /// Payments start redirection flow PaymentStartRedirection, /// Volume split on the routing type VolumeSplitOnRoutingType, /// Routing evaluate rule flow RoutingEvaluateRule, /// Relay flow Relay, /// Relay retrieve flow RelayRetrieve, /// Card tokenization flow TokenizeCard, /// Card tokenization using payment method flow TokenizeCardUsingPaymentMethodId, /// Cards batch tokenization flow TokenizeCardBatch, /// Incoming Relay Webhook Receive IncomingRelayWebhookReceive, /// Generate Hypersense Token HypersenseTokenRequest, /// Verify Hypersense Token HypersenseVerifyToken, /// Signout Hypersense Token HypersenseSignoutToken, /// Payment Method Session Create PaymentMethodSessionCreate, /// Payment Method Session Retrieve PaymentMethodSessionRetrieve, // Payment Method Session Update PaymentMethodSessionUpdate, /// Update a saved payment method using the payment methods session PaymentMethodSessionUpdateSavedPaymentMethod, /// Delete a saved payment method using the payment methods session PaymentMethodSessionDeleteSavedPaymentMethod, /// Confirm a payment method session with payment method data PaymentMethodSessionConfirm, /// Create Cards Info flow CardsInfoCreate, /// Update Cards Info flow CardsInfoUpdate, /// Cards Info migrate flow CardsInfoMigrate, ///Total payment method count for merchant TotalPaymentMethodCount, /// Process Tracker Revenue Recovery Workflow Retrieve RevenueRecoveryRetrieve, /// Process Tracker Revenue Recovery Workflow Resume RevenueRecoveryResume, /// Tokenization flow TokenizationCreate, /// Tokenization retrieve flow TokenizationRetrieve, /// Clone Connector flow CloneConnector, /// Authentication Create flow AuthenticationCreate, /// Authentication Eligibility flow AuthenticationEligibility, /// Authentication Sync flow AuthenticationSync, /// Authentication Sync Post Update flow AuthenticationSyncPostUpdate, /// Authentication Authenticate flow AuthenticationAuthenticate, ///Proxy Flow Proxy, /// Profile Acquirer Create flow ProfileAcquirerCreate, /// Profile Acquirer Update flow ProfileAcquirerUpdate, /// ThreeDs Decision Rule Execute flow ThreeDsDecisionRuleExecute, /// Incoming Network Token Webhook Receive IncomingNetworkTokenWebhookReceive, /// Decision Engine Decide Gateway Call DecisionEngineDecideGatewayCall, /// Decision Engine Gateway Feedback Call DecisionEngineGatewayFeedbackCall, /// Recovery payments create flow. RecoveryPaymentsCreate, /// Tokenization delete flow TokenizationDelete, /// Payment method data backfill flow RecoveryDataBackfill, /// Revenue recovery Redis operations flow RevenueRecoveryRedis, /// Gift card balance check flow GiftCardBalanceCheck, /// Payments Submit Eligibility flow PaymentsSubmitEligibility, }
{ "chunk": null, "crate": "router_env", "enum_name": "Flow", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_router_env_3301029868648138844
clm
enum
// hyperswitch/crates/router_env/src/logger/types.rs pub enum Category { /// Redis: general. Redis, /// API: general. Api, /// Database: general. Store, /// Event: general. Event, /// General: general. General, }
{ "chunk": null, "crate": "router_env", "enum_name": "Category", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_router_env_-6828194512478782606
clm
enum
// hyperswitch/crates/router_env/src/logger/config.rs pub enum LogFormat { /// Default pretty log format Default, /// JSON based structured logging #[default] Json, /// JSON based structured logging with pretty print PrettyJson, }
{ "chunk": null, "crate": "router_env", "enum_name": "LogFormat", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_router_env_5675392995943605600
clm
enum
// hyperswitch/crates/router_env/src/logger/formatter.rs pub enum RecordType { /// Entering a span. EnterSpan, /// Exiting a span. ExitSpan, /// Event. Event, }
{ "chunk": null, "crate": "router_env", "enum_name": "RecordType", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_router_env_-3824742555168261536
clm
enum
// hyperswitch/crates/router_env/src/logger/setup.rs enum TraceUrlAssert { Match(String), EndsWith(String), }
{ "chunk": null, "crate": "router_env", "enum_name": "TraceUrlAssert", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_redis_interface_932665113230371302
clm
enum
// hyperswitch/crates/redis_interface/src/types.rs pub enum RedisEntryId { UserSpecifiedID { milliseconds: String, sequence_number: String, }, AutoGeneratedID, AfterLastID, /// Applicable only with consumer groups UndeliveredEntryID, }
{ "chunk": null, "crate": "redis_interface", "enum_name": "RedisEntryId", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_redis_interface_-7450119809298844309
clm
enum
// hyperswitch/crates/redis_interface/src/types.rs pub enum SetnxReply { KeySet, KeyNotSet, // Existing key }
{ "chunk": null, "crate": "redis_interface", "enum_name": "SetnxReply", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_redis_interface_-6938442668782171138
clm
enum
// hyperswitch/crates/redis_interface/src/types.rs pub enum HsetnxReply { KeySet, KeyNotSet, // Existing key }
{ "chunk": null, "crate": "redis_interface", "enum_name": "HsetnxReply", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_redis_interface_3442569100033109296
clm
enum
// hyperswitch/crates/redis_interface/src/types.rs pub enum MsetnxReply { KeysSet, KeysNotSet, // At least one existing key }
{ "chunk": null, "crate": "redis_interface", "enum_name": "MsetnxReply", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_redis_interface_-9196542237863012149
clm
enum
// hyperswitch/crates/redis_interface/src/types.rs pub enum StreamCapKind { MinID, MaxLen, }
{ "chunk": null, "crate": "redis_interface", "enum_name": "StreamCapKind", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_redis_interface_-5117856814969138035
clm
enum
// hyperswitch/crates/redis_interface/src/types.rs pub enum StreamCapTrim { Exact, AlmostExact, }
{ "chunk": null, "crate": "redis_interface", "enum_name": "StreamCapTrim", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_redis_interface_7288569011833150178
clm
enum
// hyperswitch/crates/redis_interface/src/types.rs pub enum DelReply { KeyDeleted, KeyNotDeleted, // Key not found }
{ "chunk": null, "crate": "redis_interface", "enum_name": "DelReply", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_redis_interface_8616639549965644144
clm
enum
// hyperswitch/crates/redis_interface/src/types.rs pub enum SaddReply { KeySet, KeyNotSet, }
{ "chunk": null, "crate": "redis_interface", "enum_name": "SaddReply", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_redis_interface_8373787164866752641
clm
enum
// hyperswitch/crates/redis_interface/src/types.rs pub enum SetGetReply<T> { ValueSet(T), // Value was set and this is the value that was set ValueExists(T), // Value already existed and this is the existing value }
{ "chunk": null, "crate": "redis_interface", "enum_name": "SetGetReply", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_redis_interface_2304074840534222692
clm
enum
// hyperswitch/crates/redis_interface/src/errors.rs pub enum RedisError { #[error("Invalid Redis configuration: {0}")] InvalidConfiguration(String), #[error("Failed to set key value in Redis")] SetFailed, #[error("Failed to set key value in Redis. Duplicate value")] SetNxFailed, #[error("Failed to set key value with expiry in Redis")] SetExFailed, #[error("Failed to set expiry for key value in Redis")] SetExpiryFailed, #[error("Failed to get key value in Redis")] GetFailed, #[error("Failed to delete key value in Redis")] DeleteFailed, #[error("Failed to append entry to Redis stream")] StreamAppendFailed, #[error("Failed to read entries from Redis stream")] StreamReadFailed, #[error("Failed to get stream length")] GetLengthFailed, #[error("Failed to delete entries from Redis stream")] StreamDeleteFailed, #[error("Failed to trim entries from Redis stream")] StreamTrimFailed, #[error("Failed to acknowledge Redis stream entry")] StreamAcknowledgeFailed, #[error("Stream is either empty or not available")] StreamEmptyOrNotAvailable, #[error("Failed to create Redis consumer group")] ConsumerGroupCreateFailed, #[error("Failed to destroy Redis consumer group")] ConsumerGroupDestroyFailed, #[error("Failed to delete consumer from consumer group")] ConsumerGroupRemoveConsumerFailed, #[error("Failed to set last ID on consumer group")] ConsumerGroupSetIdFailed, #[error("Failed to set Redis stream message owner")] ConsumerGroupClaimFailed, #[error("Failed to serialize application type to JSON")] JsonSerializationFailed, #[error("Failed to deserialize application type from JSON")] JsonDeserializationFailed, #[error("Failed to set hash in Redis")] SetHashFailed, #[error("Failed to set hash field in Redis")] SetHashFieldFailed, #[error("Failed to add members to set in Redis")] SetAddMembersFailed, #[error("Failed to get hash field in Redis")] GetHashFieldFailed, #[error("The requested value was not found in Redis")] NotFound, #[error("Invalid RedisEntryId provided")] InvalidRedisEntryId, #[error("Failed to establish Redis connection")] RedisConnectionError, #[error("Failed to subscribe to a channel")] SubscribeError, #[error("Failed to publish to a channel")] PublishError, #[error("Failed while receiving message from publisher")] OnMessageError, #[error("Got an unknown result from redis")] UnknownResult, #[error("Failed to append elements to list in Redis")] AppendElementsToListFailed, #[error("Failed to get list elements in Redis")] GetListElementsFailed, #[error("Failed to get length of list")] GetListLengthFailed, #[error("Failed to pop list elements in Redis")] PopListElementsFailed, #[error("Failed to increment hash field in Redis")] IncrementHashFieldFailed, }
{ "chunk": null, "crate": "redis_interface", "enum_name": "RedisError", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_events_-625058762053630873
clm
enum
// hyperswitch/crates/events/src/lib.rs pub enum EventsError { /// An error occurred when publishing the event. #[error("Generic Error")] GenericError, /// An error occurred when serializing the event. #[error("Event serialization error")] SerializationError, /// An error occurred when publishing/producing the event. #[error("Event publishing error")] PublishError, }
{ "chunk": null, "crate": "events", "enum_name": "EventsError", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_payment_methods_-2742241508303275530
clm
enum
// hyperswitch/crates/payment_methods/src/controller.rs pub enum DataDuplicationCheck { Duplicated, MetaDataChanged, }
{ "chunk": null, "crate": "payment_methods", "enum_name": "DataDuplicationCheck", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_payment_methods_-6722066669701442210
clm
enum
// hyperswitch/crates/payment_methods/src/core/errors.rs pub enum VaultError { #[error("Failed to save card in card vault")] SaveCardFailed, #[error("Failed to fetch card details from card vault")] FetchCardFailed, #[error("Failed to delete card in card vault")] DeleteCardFailed, #[error("Failed to encode card vault request")] RequestEncodingFailed, #[error("Failed to deserialize card vault response")] ResponseDeserializationFailed, #[error("Failed to create payment method")] PaymentMethodCreationFailed, #[error("The given payment method is currently not supported in vault")] PaymentMethodNotSupported, #[error("The given payout method is currently not supported in vault")] PayoutMethodNotSupported, #[error("Missing required field: {field_name}")] MissingRequiredField { field_name: &'static str }, #[error("The card vault returned an unexpected response: {0:?}")] UnexpectedResponseError(bytes::Bytes), #[error("Failed to update in PMD table")] UpdateInPaymentMethodDataTableFailed, #[error("Failed to fetch payment method in vault")] FetchPaymentMethodFailed, #[error("Failed to save payment method in vault")] SavePaymentMethodFailed, #[error("Failed to generate fingerprint")] GenerateFingerprintFailed, #[error("Failed to encrypt vault request")] RequestEncryptionFailed, #[error("Failed to decrypt vault response")] ResponseDecryptionFailed, #[error("Failed to call vault")] VaultAPIError, #[error("Failed while calling locker API")] ApiError, }
{ "chunk": null, "crate": "payment_methods", "enum_name": "VaultError", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_pm_auth_-6387660952759041950
clm
enum
// hyperswitch/crates/pm_auth/src/types.rs pub enum PaymentMethodTypeDetails { Ach(BankAccountDetailsAch), Bacs(BankAccountDetailsBacs), Sepa(BankAccountDetailsSepa), }
{ "chunk": null, "crate": "pm_auth", "enum_name": "PaymentMethodTypeDetails", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_pm_auth_8431424734343704642
clm
enum
// hyperswitch/crates/pm_auth/src/types.rs pub enum RecipientAccountData { Iban(Secret<String>), Bacs { sort_code: Secret<String>, account_number: Secret<String>, }, FasterPayments { sort_code: Secret<String>, account_number: Secret<String>, }, Sepa(Secret<String>), SepaInstant(Secret<String>), Elixir { account_number: Secret<String>, iban: Secret<String>, }, Bankgiro(Secret<String>), Plusgiro(Secret<String>), }
{ "chunk": null, "crate": "pm_auth", "enum_name": "RecipientAccountData", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_pm_auth_5427339706396048790
clm
enum
// hyperswitch/crates/pm_auth/src/types.rs pub enum PaymentMethodAuthConnectors { Plaid, }
{ "chunk": null, "crate": "pm_auth", "enum_name": "PaymentMethodAuthConnectors", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_pm_auth_5805682897264860111
clm
enum
// hyperswitch/crates/pm_auth/src/types.rs pub enum MerchantAccountData { Iban { iban: Secret<String>, name: String, }, Bacs { account_number: Secret<String>, sort_code: Secret<String>, name: String, }, FasterPayments { account_number: Secret<String>, sort_code: Secret<String>, name: String, }, Sepa { iban: Secret<String>, name: String, }, SepaInstant { iban: Secret<String>, name: String, }, Elixir { account_number: Secret<String>, iban: Secret<String>, name: String, }, Bankgiro { number: Secret<String>, name: String, }, Plusgiro { number: Secret<String>, name: String, }, }
{ "chunk": null, "crate": "pm_auth", "enum_name": "MerchantAccountData", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_pm_auth_2523434528347059879
clm
enum
// hyperswitch/crates/pm_auth/src/types.rs pub enum MerchantRecipientData { ConnectorRecipientId(Secret<String>), WalletId(Secret<String>), AccountData(MerchantAccountData), }
{ "chunk": null, "crate": "pm_auth", "enum_name": "MerchantRecipientData", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_pm_auth_3005145011321094235
clm
enum
// hyperswitch/crates/pm_auth/src/types.rs pub enum ConnectorAuthType { BodyKey { client_id: Secret<String>, secret: Secret<String>, }, #[default] NoKey, }
{ "chunk": null, "crate": "pm_auth", "enum_name": "ConnectorAuthType", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_pm_auth_7500616186308112048
clm
enum
// hyperswitch/crates/pm_auth/src/core/errors.rs pub enum ConnectorError { #[error("Failed to obtain authentication type")] FailedToObtainAuthType, #[error("Missing required field: {field_name}")] MissingRequiredField { field_name: &'static str }, #[error("Failed to execute a processing step: {0:?}")] ProcessingStepFailed(Option<bytes::Bytes>), #[error("Failed to deserialize connector response")] ResponseDeserializationFailed, #[error("Failed to encode connector request")] RequestEncodingFailed, #[error("Invalid connector configuration: {config}")] InvalidConnectorConfig { config: &'static str }, }
{ "chunk": null, "crate": "pm_auth", "enum_name": "ConnectorError", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_pm_auth_-8564649262373898225
clm
enum
// hyperswitch/crates/pm_auth/src/core/errors.rs pub enum ParsingError { #[error("Failed to parse enum: {0}")] EnumParseFailure(&'static str), #[error("Failed to parse struct: {0}")] StructParseFailure(&'static str), #[error("Failed to serialize to {0} format")] EncodeError(&'static str), #[error("Unknown error while parsing")] UnknownError, }
{ "chunk": null, "crate": "pm_auth", "enum_name": "ParsingError", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_pm_auth_-1011891710746759273
clm
enum
// hyperswitch/crates/pm_auth/src/connector/plaid/transformers.rs pub enum PlaidRecipientAccountData { Iban(Secret<String>), Bacs { sort_code: Secret<String>, account: Secret<String>, }, }
{ "chunk": null, "crate": "pm_auth", "enum_name": "PlaidRecipientAccountData", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_kgraph_utils_1652838646998535002
clm
enum
// hyperswitch/crates/kgraph_utils/src/types.rs pub enum PaymentMethodFilterKey { PaymentMethodType(api_enums::PaymentMethodType), CardNetwork(api_enums::CardNetwork), }
{ "chunk": null, "crate": "kgraph_utils", "enum_name": "PaymentMethodFilterKey", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_kgraph_utils_4732391058142080320
clm
enum
// hyperswitch/crates/kgraph_utils/src/error.rs pub enum KgraphError { #[error("Invalid connector name encountered: '{0}'")] InvalidConnectorName( #[cfg(feature = "v1")] String, #[cfg(feature = "v2")] connector_enums::Connector, ), #[error("Error in domain creation")] DomainCreationError, #[error("There was an error constructing the graph: {0}")] GraphConstructionError(hyperswitch_constraint_graph::GraphError<dir::DirValue>), #[error("There was an error constructing the context")] ContextConstructionError(Box<AnalysisErrorType>), #[error("there was an unprecedented indexing error")] IndexingError, }
{ "chunk": null, "crate": "kgraph_utils", "enum_name": "KgraphError", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_external_services_4915193100338675482
clm
enum
// hyperswitch/crates/external_services/src/crm.rs pub enum CrmManagerConfig { /// Hubspot Crm configuration HubspotProxy { /// Hubspot Crm configuration hubspot_proxy: HubspotProxyConfig, }, /// No Crm configuration #[default] NoCrm, }
{ "chunk": null, "crate": "external_services", "enum_name": "CrmManagerConfig", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_external_services_-4876643452594803858
clm
enum
// hyperswitch/crates/external_services/src/lib.rs pub enum DateTimeConversionError { #[error("Invalid timestamp value from prost Timestamp: out of representable range")] /// Error for out of range TimestampOutOfRange, }
{ "chunk": null, "crate": "external_services", "enum_name": "DateTimeConversionError", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_external_services_-8762273339178841169
clm
enum
// hyperswitch/crates/external_services/src/email.rs pub enum EmailClientConfigs { #[default] /// Default Email client to use when no client is specified NoEmailClient, /// AWS ses email client Ses { /// AWS SES client configuration aws_ses: ses::SESConfig, }, /// Other Simple SMTP server Smtp { /// SMTP server configuration smtp: smtp::SmtpServerConfig, }, }
{ "chunk": null, "crate": "external_services", "enum_name": "EmailClientConfigs", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_external_services_-3411806834378345259
clm
enum
// hyperswitch/crates/external_services/src/email.rs pub enum EmailError { /// An error occurred when building email client. #[error("Error building email client")] ClientBuildingFailure, /// An error occurred when sending email #[error("Error sending email to recipient")] EmailSendingFailure, /// Failed to generate the email token #[error("Failed to generate email token")] TokenGenerationFailure, /// The expected feature is not implemented #[error("Feature not implemented")] NotImplemented, /// An error occurred when building email content. #[error("Error building email content")] ContentBuildFailure, }
{ "chunk": null, "crate": "external_services", "enum_name": "EmailError", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_external_services_8918959782041880966
clm
enum
// hyperswitch/crates/external_services/src/file_storage.rs pub enum FileStorageConfig { /// AWS S3 storage configuration. #[cfg(feature = "aws_s3")] AwsS3 { /// Configuration for AWS S3 file storage. aws_s3: aws_s3::AwsFileStorageConfig, }, /// Local file system storage configuration. #[default] FileSystem, }
{ "chunk": null, "crate": "external_services", "enum_name": "FileStorageConfig", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_external_services_-6476171775582421250
clm
enum
// hyperswitch/crates/external_services/src/file_storage.rs pub enum FileStorageError { /// Indicates that the file upload operation failed. #[error("Failed to upload file")] UploadFailed, /// Indicates that the file retrieval operation failed. #[error("Failed to retrieve file")] RetrieveFailed, /// Indicates that the file deletion operation failed. #[error("Failed to delete file")] DeleteFailed, }
{ "chunk": null, "crate": "external_services", "enum_name": "FileStorageError", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_external_services_-3389940238268650903
clm
enum
// hyperswitch/crates/external_services/src/hashicorp_vault/core.rs pub enum Kv2 {}
{ "chunk": null, "crate": "external_services", "enum_name": "Kv2", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_external_services_-7781439410180651403
clm
enum
// hyperswitch/crates/external_services/src/hashicorp_vault/core.rs pub enum HashiCorpError { /// Failed while creating hashicorp client #[error("Failed while creating a new client")] ClientCreationFailed, /// Failed while building configurations for hashicorp client #[error("Failed while building configuration")] ConfigurationBuildFailed, /// Failed while decoding data to hex format #[error("Failed while decoding hex data")] HexDecodingFailed, /// An error occurred when base64 decoding input data. #[error("Failed to base64 decode input data")] Base64DecodingFailed, /// An error occurred when KMS decrypting input data. #[error("Failed to KMS decrypt input data")] DecryptionFailed, /// The KMS decrypted output does not include a plaintext output. #[error("Missing plaintext KMS decryption output")] MissingPlaintextDecryptionOutput, /// An error occurred UTF-8 decoding KMS decrypted output. #[error("Failed to UTF-8 decode decryption output")] Utf8DecodingFailed, /// Incomplete data provided to fetch data from hasicorp #[error("Provided information about the value is incomplete")] IncompleteData, /// Failed while fetching data from vault #[error("Failed while fetching data from the server")] FetchFailed, /// Failed while parsing received data #[error("Failed while parsing the response")] ParseError, }
{ "chunk": null, "crate": "external_services", "enum_name": "HashiCorpError", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_external_services_291599455267902325
clm
enum
// hyperswitch/crates/external_services/src/file_storage/file_system.rs enum FileSystemStorageError { /// Error indicating opening a file failed #[error("Failed while opening the file")] FileOpenFailure, /// Error indicating file creation failed. #[error("Failed to create file")] CreateFailure, /// Error indicating reading a file failed. #[error("Failed while reading the file")] ReadFailure, /// Error indicating writing to a file failed. #[error("Failed while writing into file")] WriteFailure, /// Error indicating file deletion failed. #[error("Failed while deleting the file")] DeleteFailure, /// Error indicating directory creation failed #[error("Failed while creating a directory")] CreateDirFailed, }
{ "chunk": null, "crate": "external_services", "enum_name": "FileSystemStorageError", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_external_services_6344331265919978654
clm
enum
// hyperswitch/crates/external_services/src/file_storage/aws_s3.rs enum AwsS3StorageError { /// Error indicating that file upload to S3 failed. #[error("File upload to S3 failed: {0:?}")] UploadFailure(aws_sdk_s3::error::SdkError<PutObjectError>), /// Error indicating that file retrieval from S3 failed. #[error("File retrieve from S3 failed: {0:?}")] RetrieveFailure(aws_sdk_s3::error::SdkError<GetObjectError>), /// Error indicating that file deletion from S3 failed. #[error("File delete from S3 failed: {0:?}")] DeleteFailure(aws_sdk_s3::error::SdkError<DeleteObjectError>), /// Unknown error occurred. #[error("Unknown error occurred: {0:?}")] UnknownError(aws_sdk_s3::primitives::ByteStreamError), }
{ "chunk": null, "crate": "external_services", "enum_name": "AwsS3StorageError", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }
hyperswitch_enum_external_services_8223780694568790391
clm
enum
// hyperswitch/crates/external_services/src/managers/secrets_management.rs pub enum SecretsManagementConfig { /// AWS KMS configuration #[cfg(feature = "aws_kms")] AwsKms { /// AWS KMS config aws_kms: aws_kms::core::AwsKmsConfig, }, /// HashiCorp-Vault configuration #[cfg(feature = "hashicorp-vault")] HashiCorpVault { /// HC-Vault config hc_vault: hashicorp_vault::core::HashiCorpVaultConfig, }, /// Variant representing no encryption #[default] NoEncryption, }
{ "chunk": null, "crate": "external_services", "enum_name": "SecretsManagementConfig", "file_size": null, "for_type": null, "function_name": null, "is_async": null, "is_pub": null, "lines": null, "method_name": null, "num_enums": null, "num_items": null, "num_structs": null, "repo": "hyperswitch", "start_line": null, "struct_name": null, "total_crates": null, "trait_name": null }