id
stringlengths 20
153
| type
stringclasses 1
value | granularity
stringclasses 14
values | content
stringlengths 16
84.3k
| metadata
dict |
|---|---|---|---|---|
hyperswitch_enum_euclid_-7873825831060080168
|
clm
|
enum
|
// hyperswitch/crates/euclid/src/backend/vir_interpreter/types.rs
pub enum VirInterpreterError {
#[error("Error when lowering the program: {0:?}")]
LoweringError(dssa::types::AnalysisError),
}
|
{
"chunk": null,
"crate": "euclid",
"enum_name": "VirInterpreterError",
"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_euclid_-5764993103063167132
|
clm
|
enum
|
// hyperswitch/crates/euclid/src/dssa/state_machine.rs
pub enum StateMachineError {
#[error("Index out of bounds: {0}")]
IndexOutOfBounds(&'static str),
}
|
{
"chunk": null,
"crate": "euclid",
"enum_name": "StateMachineError",
"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_euclid_-3209207297549183172
|
clm
|
enum
|
// hyperswitch/crates/euclid/src/dssa/types.rs
pub enum CtxValueKind<'a> {
Assertion(&'a dir::DirValue),
Negation(&'a [dir::DirValue]),
}
|
{
"chunk": null,
"crate": "euclid",
"enum_name": "CtxValueKind",
"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_euclid_3731595651338967551
|
clm
|
enum
|
// hyperswitch/crates/euclid/src/dssa/types.rs
pub enum AnalyzeResult {
AllOk,
}
|
{
"chunk": null,
"crate": "euclid",
"enum_name": "AnalyzeResult",
"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_euclid_-8475496931850330424
|
clm
|
enum
|
// hyperswitch/crates/euclid/src/dssa/types.rs
pub enum AnalysisErrorType {
#[error("Invalid program key given: '{0}'")]
InvalidKey(String),
#[error("Invalid variant '{got}' received for key '{key}'")]
InvalidVariant {
key: String,
expected: Vec<String>,
got: String,
},
#[error(
"Invalid data type for value '{}' (expected {expected}, got {got})",
key
)]
InvalidType {
key: String,
expected: DataType,
got: DataType,
},
#[error("Invalid comparison '{operator:?}' for value type {value_type}")]
InvalidComparison {
operator: ast::ComparisonType,
value_type: DataType,
},
#[error("Invalid value received for length as '{value}: {:?}'", message)]
InvalidValue {
key: dir::DirKeyKind,
value: String,
message: Option<String>,
},
#[error("Conflicting assertions received for key '{}'", .key.kind)]
ConflictingAssertions {
key: dir::DirKey,
values: Vec<ValueData>,
},
#[error("Key '{}' exhaustively negated", .key.kind)]
ExhaustiveNegation {
key: dir::DirKey,
metadata: Vec<Metadata>,
},
#[error("The condition '{value}' was asserted and negated in the same condition")]
NegatedAssertion {
value: dir::DirValue,
assertion_metadata: Metadata,
negation_metadata: Metadata,
},
#[error("Graph analysis error: {0:#?}")]
GraphAnalysis(
graph::AnalysisError<dir::DirValue>,
hyperswitch_constraint_graph::Memoization<dir::DirValue>,
),
#[error("State machine error")]
StateMachine(dssa::state_machine::StateMachineError),
#[error("Unsupported program key '{0}'")]
UnsupportedProgramKey(dir::DirKeyKind),
#[error("Ran into an unimplemented feature")]
NotImplemented,
#[error("The payment method type is not supported under the payment method")]
NotSupported,
}
|
{
"chunk": null,
"crate": "euclid",
"enum_name": "AnalysisErrorType",
"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_euclid_4049636221991286758
|
clm
|
enum
|
// hyperswitch/crates/euclid/src/dssa/types.rs
pub enum ValueType {
EnumVariants(Vec<EuclidValue>),
Number,
}
|
{
"chunk": null,
"crate": "euclid",
"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_euclid_3672685590744031661
|
clm
|
enum
|
// hyperswitch/crates/euclid/src/dssa/graph.rs
pub enum AnalysisError<V: cgraph::ValueNode> {
Graph(cgraph::GraphError<V>),
AssertionTrace {
trace: Weak<cgraph::AnalysisTrace<V>>,
metadata: Metadata,
},
NegationTrace {
trace: Weak<cgraph::AnalysisTrace<V>>,
metadata: Vec<Metadata>,
},
}
|
{
"chunk": null,
"crate": "euclid",
"enum_name": "AnalysisError",
"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_-3588388693137449989
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payment_methods.rs
pub enum PaymentMethodUpdateData {
Card(CardDetailUpdate),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PaymentMethodUpdateData",
"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_-8290298385340342914
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payment_methods.rs
pub enum PaymentMethodCreateData {
Card(CardDetail),
ProxyCard(ProxyCardDetails),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PaymentMethodCreateData",
"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_-8290298385340342914
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payment_methods.rs
pub enum PaymentMethodCreateData {
Card(CardDetail),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PaymentMethodCreateData",
"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_-353771364581821137
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payment_methods.rs
pub enum CardType {
Credit,
Debit,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "CardType",
"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_1681363677164097104
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payment_methods.rs
pub enum PaymentMethodResponseData {
Card(CardDetailFromLocker),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PaymentMethodResponseData",
"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_5480256531744372150
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payment_methods.rs
pub enum PaymentMethodsData {
Card(CardDetailsPaymentMethod),
BankDetails(PaymentMethodDataBankCreds),
WalletDetails(PaymentMethodDataWalletInfo),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PaymentMethodsData",
"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_-1147459975363331869
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payment_methods.rs
pub enum BankAccountAccessCreds {
AccessToken(masking::Secret<String>),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "BankAccountAccessCreds",
"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_8683769542846639569
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payment_methods.rs
pub enum SurchargeResponse {
/// Fixed Surcharge value
Fixed(MinorUnit),
/// Surcharge percentage
Rate(SurchargePercentage),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "SurchargeResponse",
"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_-702539360177024904
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payment_methods.rs
pub enum TokenDetailsResponse {
NetworkTokenDetails(NetworkTokenDetailsResponse),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "TokenDetailsResponse",
"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_-857395119667036796
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payment_methods.rs
pub enum PaymentMethodListData {
Card(CardDetailFromLocker),
#[cfg(feature = "payouts")]
#[schema(value_type = Bank)]
Bank(payouts::Bank),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PaymentMethodListData",
"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_-8442234472798139889
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payment_methods.rs
pub enum MigrationStatus {
Success,
#[default]
Failed,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "MigrationStatus",
"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_2559172295940063254
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payment_methods.rs
pub enum UpdateStatus {
Success,
#[default]
Failed,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "UpdateStatus",
"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_-3200140192467452054
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payment_methods.rs
pub enum TokenizeDataRequest {
Card(TokenizeCardRequest),
ExistingPaymentMethod(TokenizePaymentMethodRequest),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "TokenizeDataRequest",
"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_-5139712744650033170
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payment_methods.rs
pub enum NetworkTokenStatusCheckResponse {
/// Successful network token status check response
SuccessResponse(NetworkTokenStatusCheckSuccessResponse),
/// Error response for network token status check
FailureResponse(NetworkTokenStatusCheckFailureResponse),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "NetworkTokenStatusCheckResponse",
"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_583942455375841195
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/proxy.rs
pub enum TokenType {
TokenizationId,
PaymentMethodId,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "TokenType",
"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_8534832071943975573
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/open_router.rs
pub enum RankingAlgorithm {
SrBasedRouting,
PlBasedRouting,
NtwBasedRouting,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "RankingAlgorithm",
"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_2651509104591791091
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/open_router.rs
pub enum TxnStatus {
Started,
AuthenticationFailed,
JuspayDeclined,
PendingVbv,
VBVSuccessful,
Authorized,
AuthorizationFailed,
Charged,
Authorizing,
CODInitiated,
Voided,
VoidedPostCharge,
VoidInitiated,
Nop,
CaptureInitiated,
CaptureFailed,
VoidFailed,
AutoRefunded,
PartialCharged,
ToBeCharged,
Pending,
Failure,
Declined,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "TxnStatus",
"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_-9162601903675946843
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/open_router.rs
pub enum DecisionEngineDynamicAlgorithmType {
SuccessRate,
Elimination,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "DecisionEngineDynamicAlgorithmType",
"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_-919666785794328478
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/open_router.rs
pub enum DecisionEngineConfigVariant {
SuccessRate(DecisionEngineSuccessRateData),
Elimination(DecisionEngineEliminationData),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "DecisionEngineConfigVariant",
"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_-1422471664942594589
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/open_router.rs
pub enum AlgorithmType {
SuccessRate,
Elimination,
DebitRouting,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "AlgorithmType",
"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_-1073905107432446940
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/refunds.rs
pub enum RefundType {
Scheduled,
#[default]
Instant,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "RefundType",
"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_-1073905107432446940
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/refunds.rs
pub enum RefundType {
Scheduled,
#[default]
Instant,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "RefundType",
"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_-3444584913239946813
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/refunds.rs
pub enum RefundStatus {
Succeeded,
Failed,
#[default]
Pending,
Review,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "RefundStatus",
"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_-8752227422975898227
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payouts.rs
pub enum PayoutRequest {
PayoutActionRequest(PayoutActionRequest),
PayoutCreateRequest(Box<PayoutCreateRequest>),
PayoutRetrieveRequest(PayoutRetrieveRequest),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PayoutRequest",
"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_778556990641886410
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payouts.rs
pub enum PayoutMethodData {
Card(CardPayout),
Bank(Bank),
Wallet(Wallet),
BankRedirect(BankRedirect),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PayoutMethodData",
"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_7115873702454231464
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payouts.rs
pub enum Bank {
Ach(AchBankTransfer),
Bacs(BacsBankTransfer),
Sepa(SepaBankTransfer),
Pix(PixBankTransfer),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "Bank",
"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_5617499980476235874
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payouts.rs
pub enum Wallet {
ApplePayDecrypt(ApplePayDecrypt),
Paypal(Paypal),
Venmo(Venmo),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "Wallet",
"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_-7707633345727073486
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payouts.rs
pub enum BankRedirect {
Interac(Interac),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "BankRedirect",
"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_3999275151123265598
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payouts.rs
pub enum PayoutMethodDataResponse {
#[schema(value_type = CardAdditionalData)]
Card(Box<payout_method_utils::CardAdditionalData>),
#[schema(value_type = BankAdditionalData)]
Bank(Box<payout_method_utils::BankAdditionalData>),
#[schema(value_type = WalletAdditionalData)]
Wallet(Box<payout_method_utils::WalletAdditionalData>),
#[schema(value_type = BankRedirectAdditionalData)]
BankRedirect(Box<payout_method_utils::BankRedirectAdditionalData>),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PayoutMethodDataResponse",
"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_-3256455008150242866
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/cards_info.rs
pub enum CardInfoMigrationStatus {
Success,
#[default]
Failed,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "CardInfoMigrationStatus",
"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_5434994806307930028
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/revenue_recovery_data_backfill.rs
pub enum BackfillError {
InvalidCardType(String),
DatabaseError(String),
RedisError(String),
CsvParsingError(String),
FileProcessingError(String),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "BackfillError",
"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_-5262115155069291142
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/revenue_recovery_data_backfill.rs
pub enum RedisKeyType {
Status, // for customer:{id}:status
Tokens, // for customer:{id}:tokens
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "RedisKeyType",
"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_-5028521428019041252
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/revenue_recovery_data_backfill.rs
pub enum ScheduledAtUpdate {
SetToNull,
SetToDateTime(PrimitiveDateTime),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "ScheduledAtUpdate",
"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_-5265078840459684475
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/surcharge_decision_configs.rs
pub enum SurchargeOutput {
Fixed { amount: MinorUnit },
Rate(Percentage<SURCHARGE_PERCENTAGE_PRECISION_LENGTH>),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "SurchargeOutput",
"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_2328178772362161182
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/payments.rs
pub enum PaymentOp {
Create,
Update,
Confirm,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PaymentOp",
"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_-5352919934153961237
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/conditional_configs.rs
pub enum DecisionManager {
DecisionManagerv0(ConditionalConfigReq),
DecisionManagerv1(DecisionManagerRequest),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "DecisionManager",
"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_1313273052649013175
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/disputes.rs
pub enum EvidenceType {
CancellationPolicy,
CustomerCommunication,
CustomerSignature,
Receipt,
RefundPolicy,
ServiceDocumentation,
ShippingDocumentation,
InvoiceShowingDistinctTransactions,
RecurringTransactionAgreement,
UncategorizedFile,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "EvidenceType",
"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_-8313529235133367293
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/subscription.rs
pub enum SubscriptionStatus {
/// Subscription is active.
Active,
/// Subscription is created but not yet active.
Created,
/// Subscription is inactive.
InActive,
/// Subscription is in pending state.
Pending,
/// Subscription is in trial state.
Trial,
/// Subscription is paused.
Paused,
/// Subscription is unpaid.
Unpaid,
/// Subscription is a one-time payment.
Onetime,
/// Subscription is cancelled.
Cancelled,
/// Subscription has failed.
Failed,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "SubscriptionStatus",
"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_9190329272371649519
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/subscription.rs
pub enum PeriodUnit {
Day,
Week,
Month,
Year,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PeriodUnit",
"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_3041989178895488001
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/enums.rs
pub enum PayoutConnectors {
Adyen,
Adyenplatform,
Cybersource,
Ebanx,
Gigadat,
Loonio,
Nomupay,
Nuvei,
Payone,
Paypal,
Stripe,
Wise,
Worldpay,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PayoutConnectors",
"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_4483529410498164536
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/enums.rs
pub enum UpdateActiveAttempt {
/// Request to set the active attempt id
#[schema(value_type = Option<String>)]
Set(common_utils::id_type::GlobalAttemptId),
/// To unset the active attempt id
Unset,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "UpdateActiveAttempt",
"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_7280257906541734557
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/enums.rs
pub enum FrmConnectors {
/// Signifyd Risk Manager. Official docs: https://docs.signifyd.com/
Signifyd,
Riskified,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "FrmConnectors",
"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_1814489421359186346
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/enums.rs
pub enum TaxConnectors {
Taxjar,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "TaxConnectors",
"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_-8371793562350197840
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/enums.rs
pub enum BillingConnectors {
Chargebee,
Recurly,
Stripebilling,
Custombilling,
#[cfg(feature = "dummy_connector")]
DummyBillingConnector,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "BillingConnectors",
"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_3057662134771006022
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/enums.rs
pub enum VaultConnectors {
Vgs,
HyperswitchVault,
Tokenex,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "VaultConnectors",
"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_-832685745925149145
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/enums.rs
pub enum FrmAction {
CancelTxn,
AutoRefund,
ManualReview,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "FrmAction",
"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_-9076263823400767471
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/enums.rs
pub enum FrmPreferredFlowTypes {
Pre,
Post,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "FrmPreferredFlowTypes",
"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_-6832340050408950011
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/enums.rs
pub enum FieldType {
UserCardNumber,
UserCardExpiryMonth,
UserCardExpiryYear,
UserCardCvc,
UserCardNetwork,
UserFullName,
UserEmailAddress,
UserPhoneNumber,
UserPhoneNumberCountryCode, //phone number's country code
UserCountry { options: Vec<String> }, //for country inside payment method data ex- bank redirect
UserCurrency { options: Vec<String> },
UserCryptoCurrencyNetwork, //for crypto network associated with the cryptopcurrency
UserBillingName,
UserAddressLine1,
UserAddressLine2,
UserAddressCity,
UserAddressPincode,
UserAddressState,
UserAddressCountry { options: Vec<String> },
UserShippingName,
UserShippingAddressLine1,
UserShippingAddressLine2,
UserShippingAddressCity,
UserShippingAddressPincode,
UserShippingAddressState,
UserShippingAddressCountry { options: Vec<String> },
UserSocialSecurityNumber,
UserBlikCode,
UserBank,
UserBankOptions { options: Vec<String> },
UserBankAccountNumber,
UserSourceBankAccountId,
UserDestinationBankAccountId,
Text,
DropDown { options: Vec<String> },
UserDateOfBirth,
UserVpaId,
LanguagePreference { options: Vec<String> },
UserPixKey,
UserCpf,
UserCnpj,
UserIban,
UserBsbNumber,
UserBankSortCode,
UserBankRoutingNumber,
UserBankType { options: Vec<String> },
UserBankAccountHolderName,
UserMsisdn,
UserClientIdentifier,
OrderDetailsProductName,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "FieldType",
"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_705383222078468094
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/enums.rs
pub enum RetryAction {
/// Manual retry through request is being deprecated, now it is available through profile
ManualRetry,
/// Denotes that the payment is requeued
Requeue,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "RetryAction",
"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_-7232249718669401370
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/enums.rs
pub enum LockerChoice {
HyperswitchCardVault,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "LockerChoice",
"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_-1762717267093939223
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/enums.rs
pub enum PmAuthConnectors {
Plaid,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PmAuthConnectors",
"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_4842595538977867210
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/enums.rs
pub enum ReconPermissionScope {
#[serde(rename = "R")]
Read = 0,
#[serde(rename = "RW")]
Write = 1,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "ReconPermissionScope",
"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_7247297253347563201
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/enums.rs
pub enum TokenStatus {
/// Indicates that the token is active and can be used for payments
Active,
/// Indicates that the token is suspended from network's end for some reason and can't be used for payments until it is re-activated
Suspended,
/// Indicates that the token is deactivated and further can't be used for payments
Deactivated,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "TokenStatus",
"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_3399043723597668886
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/blocklist.rs
pub enum BlocklistRequest {
CardBin(String),
Fingerprint(String),
ExtendedCardBin(String),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "BlocklistRequest",
"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_6691111933830711126
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/user.rs
pub enum AuthConfig {
OpenIdConnect {
private_config: OpenIdConnectPrivateConfig,
public_config: OpenIdConnectPublicConfig,
},
MagicLink,
Password,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "AuthConfig",
"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_-8106092587245589823
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/user.rs
pub enum OpenIdProvider {
Okta,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "OpenIdProvider",
"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_-7226276416938472160
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/user.rs
pub enum UpdateUserAuthenticationMethodRequest {
AuthMethod {
id: String,
auth_config: AuthConfig,
},
EmailDomain {
owner_id: String,
email_domain: String,
},
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "UpdateUserAuthenticationMethodRequest",
"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_-2567045972199513852
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/user_role.rs
pub enum AuthorizationInfo {
Group(GroupInfo),
GroupWithTag(ParentInfo),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "AuthorizationInfo",
"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_5916957267067342148
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/user_role.rs
pub enum UserStatus {
Active,
InvitationSent,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "UserStatus",
"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_-8843743074690472076
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/external_service_auth.rs
pub enum ExternalVerifyTokenResponse {
Hypersense {
user_id: String,
merchant_id: id_type::MerchantId,
name: Secret<String>,
email: pii::Email,
},
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "ExternalVerifyTokenResponse",
"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_-6838211510269725845
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/poll.rs
pub enum PollStatus {
Pending,
Completed,
NotFound,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PollStatus",
"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_3509003037419973349
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/webhooks.rs
pub enum IncomingWebhookEvent {
/// Authorization + Capture failure
PaymentIntentFailure,
/// Authorization + Capture success
PaymentIntentSuccess,
PaymentIntentProcessing,
PaymentIntentPartiallyFunded,
PaymentIntentCancelled,
PaymentIntentCancelFailure,
PaymentIntentAuthorizationSuccess,
PaymentIntentAuthorizationFailure,
PaymentIntentExtendAuthorizationSuccess,
PaymentIntentExtendAuthorizationFailure,
PaymentIntentCaptureSuccess,
PaymentIntentCaptureFailure,
PaymentIntentExpired,
PaymentActionRequired,
EventNotSupported,
SourceChargeable,
SourceTransactionCreated,
RefundFailure,
RefundSuccess,
DisputeOpened,
DisputeExpired,
DisputeAccepted,
DisputeCancelled,
DisputeChallenged,
// dispute has been successfully challenged by the merchant
DisputeWon,
// dispute has been unsuccessfully challenged
DisputeLost,
MandateActive,
MandateRevoked,
EndpointVerification,
ExternalAuthenticationARes,
FrmApproved,
FrmRejected,
#[cfg(feature = "payouts")]
PayoutSuccess,
#[cfg(feature = "payouts")]
PayoutFailure,
#[cfg(feature = "payouts")]
PayoutProcessing,
#[cfg(feature = "payouts")]
PayoutCancelled,
#[cfg(feature = "payouts")]
PayoutCreated,
#[cfg(feature = "payouts")]
PayoutExpired,
#[cfg(feature = "payouts")]
PayoutReversed,
#[cfg(all(feature = "revenue_recovery", feature = "v2"))]
RecoveryPaymentFailure,
#[cfg(all(feature = "revenue_recovery", feature = "v2"))]
RecoveryPaymentSuccess,
#[cfg(all(feature = "revenue_recovery", feature = "v2"))]
RecoveryPaymentPending,
#[cfg(all(feature = "revenue_recovery", feature = "v2"))]
RecoveryInvoiceCancel,
SetupWebhook,
InvoiceGenerated,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "IncomingWebhookEvent",
"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_1745767833592879846
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/webhooks.rs
pub enum RefundIdType {
RefundId(String),
ConnectorRefundId(String),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "RefundIdType",
"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_1823921405844169570
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/webhooks.rs
pub enum MandateIdType {
MandateId(String),
ConnectorMandateId(String),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "MandateIdType",
"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_-7316499595073192581
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/webhooks.rs
pub enum AuthenticationIdType {
AuthenticationId(common_utils::id_type::AuthenticationId),
ConnectorAuthenticationId(String),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "AuthenticationIdType",
"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_2394876534791469444
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/webhooks.rs
pub enum PayoutIdType {
PayoutAttemptId(String),
ConnectorPayoutId(String),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "PayoutIdType",
"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_4138976117338146402
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/webhooks.rs
pub enum ObjectReferenceId {
PaymentId(payments::PaymentIdType),
RefundId(RefundIdType),
MandateId(MandateIdType),
ExternalAuthenticationID(AuthenticationIdType),
#[cfg(feature = "payouts")]
PayoutId(PayoutIdType),
#[cfg(all(feature = "revenue_recovery", feature = "v2"))]
InvoiceId(InvoiceIdType),
SubscriptionId(common_utils::id_type::SubscriptionId),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "ObjectReferenceId",
"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_3178805974352500699
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/webhooks.rs
pub enum InvoiceIdType {
ConnectorInvoiceId(String),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "InvoiceIdType",
"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_3230761085432501672
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/webhooks.rs
pub enum OutgoingWebhookContent {
#[schema(value_type = PaymentsResponse, title = "PaymentsResponse")]
PaymentDetails(Box<payments::PaymentsResponse>),
#[schema(value_type = RefundResponse, title = "RefundResponse")]
RefundDetails(Box<refunds::RefundResponse>),
#[schema(value_type = DisputeResponse, title = "DisputeResponse")]
DisputeDetails(Box<disputes::DisputeResponse>),
#[schema(value_type = MandateResponse, title = "MandateResponse")]
MandateDetails(Box<mandates::MandateResponse>),
#[cfg(feature = "payouts")]
#[schema(value_type = PayoutCreateResponse, title = "PayoutCreateResponse")]
PayoutDetails(Box<payouts::PayoutCreateResponse>),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "OutgoingWebhookContent",
"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_3230761085432501672
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/webhooks.rs
pub enum OutgoingWebhookContent {
#[schema(value_type = PaymentsResponse, title = "PaymentsResponse")]
PaymentDetails(Box<payments::PaymentsResponse>),
#[schema(value_type = RefundResponse, title = "RefundResponse")]
RefundDetails(Box<refunds::RefundResponse>),
#[schema(value_type = DisputeResponse, title = "DisputeResponse")]
DisputeDetails(Box<disputes::DisputeResponse>),
#[schema(value_type = MandateResponse, title = "MandateResponse")]
MandateDetails(Box<mandates::MandateResponse>),
#[cfg(feature = "payouts")]
#[schema(value_type = PayoutCreateResponse, title = "PayoutCreateResponse")]
PayoutDetails(Box<payouts::PayoutCreateResponse>),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "OutgoingWebhookContent",
"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_7160487436128445377
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/api_keys.rs
pub enum ApiKeyExpiration {
/// The API Key does not expire.
#[serde(with = "never")]
Never,
/// The API Key expires at the specified date and time.
#[serde(with = "custom_serde::iso8601")]
DateTime(PrimitiveDateTime),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "ApiKeyExpiration",
"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_7742014999774129566
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/analytics.rs
pub enum Granularity {
#[serde(rename = "G_ONEMIN")]
OneMin,
#[serde(rename = "G_FIVEMIN")]
FiveMin,
#[serde(rename = "G_FIFTEENMIN")]
FifteenMin,
#[serde(rename = "G_THIRTYMIN")]
ThirtyMin,
#[serde(rename = "G_ONEHOUR")]
OneHour,
#[serde(rename = "G_ONEDAY")]
OneDay,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "Granularity",
"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_-3219899527106499933
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/analytics.rs
pub enum QueryLimit {
#[serde(rename = "TOP_5")]
Top5,
#[serde(rename = "TOP_10")]
Top10,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "QueryLimit",
"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_3289001842496262181
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/authentication.rs
pub enum EligibilityResponseParams {
ThreeDsData(ThreeDsData),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "EligibilityResponseParams",
"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_7969582489313589405
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum ConnectorSelection {
Priority(Vec<RoutableConnectorChoice>),
VolumeSplit(Vec<ConnectorVolumeSplit>),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "ConnectorSelection",
"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_493225937245271135
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum LinkedRoutingConfigRetrieveResponse {
MerchantAccountBased(Box<RoutingRetrieveResponse>),
ProfileBased(Vec<RoutingDictionaryRecord>),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "LinkedRoutingConfigRetrieveResponse",
"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_7782932116707909680
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum RoutableChoiceKind {
OnlyConnector,
FullStruct,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "RoutableChoiceKind",
"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_-5970362432281253591
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum RoutableChoiceSerde {
OnlyConnector(Box<RoutableConnectors>),
FullStruct {
connector: RoutableConnectors,
merchant_connector_id: Option<common_utils::id_type::MerchantConnectorAccountId>,
},
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "RoutableChoiceSerde",
"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_4035138542815682438
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum RoutingAlgorithmKind {
Single,
Priority,
VolumeSplit,
Advanced,
Dynamic,
ThreeDsDecisionRule,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "RoutingAlgorithmKind",
"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_-4393158457018937829
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum RoutingAlgorithmWrapper {
Static(StaticRoutingAlgorithm),
Dynamic(DynamicRoutingAlgorithm),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "RoutingAlgorithmWrapper",
"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_5339202033938395979
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum DynamicRoutingAlgorithm {
EliminationBasedAlgorithm(EliminationRoutingConfig),
SuccessBasedAlgorithm(SuccessBasedRoutingConfig),
ContractBasedAlgorithm(ContractBasedRoutingConfig),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "DynamicRoutingAlgorithm",
"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_1677065061556865820
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum StaticRoutingAlgorithm {
Single(Box<RoutableConnectorChoice>),
Priority(Vec<RoutableConnectorChoice>),
VolumeSplit(Vec<ConnectorVolumeSplit>),
#[schema(value_type=ProgramConnectorSelection)]
Advanced(Program<ConnectorSelection>),
#[schema(value_type=ProgramThreeDsDecisionRule)]
ThreeDsDecisionRule(Program<ThreeDSDecisionRule>),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "StaticRoutingAlgorithm",
"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_5428047552304861506
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum RoutingAlgorithmSerde {
Single(Box<RoutableConnectorChoice>),
Priority(Vec<RoutableConnectorChoice>),
VolumeSplit(Vec<ConnectorVolumeSplit>),
Advanced(Program<ConnectorSelection>),
ThreeDsDecisionRule(Program<ThreeDSDecisionRule>),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "RoutingAlgorithmSerde",
"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_-1266454831647970617
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum StraightThroughAlgorithm {
#[schema(title = "Single")]
Single(Box<RoutableConnectorChoice>),
#[schema(title = "Priority")]
Priority(Vec<RoutableConnectorChoice>),
#[schema(title = "VolumeSplit")]
VolumeSplit(Vec<ConnectorVolumeSplit>),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "StraightThroughAlgorithm",
"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_7151791784310946163
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum StraightThroughAlgorithmInner {
Single(Box<RoutableConnectorChoice>),
Priority(Vec<RoutableConnectorChoice>),
VolumeSplit(Vec<ConnectorVolumeSplit>),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "StraightThroughAlgorithmInner",
"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_1822894652083625994
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum StraightThroughAlgorithmSerde {
Direct(StraightThroughAlgorithmInner),
Nested {
algorithm: StraightThroughAlgorithmInner,
},
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "StraightThroughAlgorithmSerde",
"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_8179745116268654796
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum RoutingKind {
Config(RoutingDictionary),
RoutingAlgorithm(Vec<RoutingDictionaryRecord>),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "RoutingKind",
"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_-5323125046333076201
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum RoutingType {
#[default]
Static,
Dynamic,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "RoutingType",
"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_3982445648097671652
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum DynamicRoutingFeatures {
Metrics,
DynamicConnectorSelection,
#[default]
None,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "DynamicRoutingFeatures",
"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_-2850538976951403193
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum DynamicRoutingPayload {
SuccessBasedRoutingPayload(SuccessBasedRoutingConfig),
EliminationRoutingPayload(EliminationRoutingConfig),
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "DynamicRoutingPayload",
"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_7237179048977388537
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum DynamicRoutingConfigParams {
PaymentMethod,
PaymentMethodType,
AuthenticationType,
Currency,
Country,
CardNetwork,
CardBin,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "DynamicRoutingConfigParams",
"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_-3154309305475271240
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum SuccessRateSpecificityLevel {
#[default]
Merchant,
Global,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "SuccessRateSpecificityLevel",
"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_8951683994007382971
|
clm
|
enum
|
// hyperswitch/crates/api_models/src/routing.rs
pub enum DynamicRoutingType {
SuccessRateBasedRouting,
EliminationRouting,
ContractBasedRouting,
}
|
{
"chunk": null,
"crate": "api_models",
"enum_name": "DynamicRoutingType",
"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
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.