text
stringlengths
70
351k
source
stringclasses
4 values
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/merchant.rs | crate: common_utils /// get_merchant_fingerprint_secret_key pub fn get_merchant_fingerprint_secret_key(&self) -> String { {<|fim_suffix|> <|fim_middle|> }}
ast_fragments
// file: hyperswitch/crates/common_utils/src/id_type/merchant.rs | crate: common_utils /// get_blocklist_enabled_key pub fn get_blocklist_guard_key(&self) -> String { format!("guard_blocklist_for_{}", self.get_string_repr()) }
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/merchant.rs | crate: common_utils /// get_pm_filters_cgraph_key pub fn get_pm_filters_cgraph_key(&self) -> String { {<|fim_suffix|> <|fim_middle|> }}
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/merchant.rs | crate: common_utils /// get_requires_cvv_key pub fn get_requires_cvv_key(&self) -> String { {<|fim_suffix|> <|fim_middle|> }}
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/merchant.rs | crate: common_utils /// get_max_auto_retries_enabled key pub fn get_max_auto_retries_enabled(&self) -> String { <|fim_suffix|> <|fim_middle|> }
ast_fragments
// file: hyperswitch/crates/common_utils/src/id_type/merchant.rs | crate: common_utils /// get step up enabled key pub fn get_step_up_enabled_key(&self) -> String { format!("step_up_enabled_{}", self.get_string_repr()) }
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/merchant.rs | crate: common_utils fn from(value: MerchantId) -> Self { {<|fim_suffix|> <|fim_middle|> }}
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/merchant.rs | crate: common_utils use std::fmt::Display; use crate::{ date_time, errors::{CustomResult, ValidationError}, generate_id_with_default_len, id_type::{AlphaNumericId, LengthId}, new_type::MerchantName, types::keymanag...
ast_fragments
// file: hyperswitch/crates/common_utils/src/id_type/merchant.rs | crate: common_utils use crate::{ date_time, errors::{CustomResult, ValidationError}, generate_id_with_default_len, id_type::{AlphaNumericId, LengthId}, new_type::MerchantName, types::keymanager, }; /// Get a merchant id with ...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/merchant.rs | crate: common_utils use crate::{ date_time, errors::{CustomResult, ValidationError}, generate_id_with_default_len, id_type::{AlphaNumericId, LengthId}, new_type::MerchantName, types::keymanager, }; /// Create a...
ast_fragments
// file: hyperswitch/crates/common_utils/src/id_type/merchant.rs | crate: common_utils use crate::{ date_time, errors::{CustomResult, ValidationError}, generate_id_with_default_len, id_type::{AlphaNumericId, LengthId}, new_type::MerchantName, types::keymanager, }; /// Get a merchant id for i...
ast_fragments
// file: hyperswitch/crates/common_utils/src/id_type/merchant.rs | crate: common_utils use crate::{ date_time, errors::{CustomResult, ValidationError}, generate_id_with_default_len, id_type::{AlphaNumericId, LengthId}, new_type::MerchantName, types::keymanager, }; /// Get a merchant id with ...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/merchant.rs | crate: common_utils use crate::{ date_time, errors::{CustomResult, ValidationError}, generate_id_with_default_len, id_type::{AlphaNumericId, LengthId}, new_type::MerchantName, types::keymanager, }; /// Create a...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/merchant.rs | crate: common_utils fn from(val: MerchantId) -> Self { <|fim_suffix|> <|fim_middle|> }
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/global_id/payment.rs | crate: common_utils use crate::{errors, generate_id_with_default_len, generate_time_ordered_id_without_prefix, types}; /// Generate a new GlobalPaymentId from a cell id pub fn generate(cell_id: &crate::id_type::CellId) -> Sel...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/global_id/payment.rs | crate: common_utils use common_enums::enums; /// Generate the id for Revenue Recovery Psync PT workflow pub fn get_psync_revenue_recovery_id( &self, task: &str, runner: enums::ProcessTrackerRunner, ...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/global_id/payment.rs | crate: common_utils /// Generate a new GlobalAttemptId from a cell id pub fn generate(cell_id: &super::CellId) -> Self { {<|fim_suffix|> <|fim_middle|> }}
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/global_id/payment.rs | crate: common_utils use common_enums::enums; /// Generate the id for revenue recovery Execute PT workflow pub fn get_execute_revenue_recovery_id( &self, task: &str, runner: enums::ProcessTrackerRunner,...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/global_id/payment.rs | crate: common_utils use crate::{errors, generate_id_with_default_len, generate_time_ordered_id_without_prefix, types}; /// Generate a new ClientId from self pub fn generate_client_secret(&self) -> types::ClientSecret { {<|fim...
ast_fragments
// file: hyperswitch/crates/common_utils/src/id_type/global_id/payment.rs | crate: common_utils use crate::{errors, generate_id_with_default_len, generate_time_ordered_id_without_prefix, types}; /// Generate a new GlobalPaymentId from a cell id pub fn generate(cell_id: &crate::id_type::CellId) -> Self { let...
ast_fragments
// file: hyperswitch/crates/common_utils/src/id_type/global_id/payment.rs | crate: common_utils /// Get string representation of the id pub fn get_string_repr(&self) -> &str { self.0.get_string_repr() }
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/global_id/customer.rs | crate: common_utils fn try_from(value: GlobalCustomerId) -> Result<Self, Self::Error> { {<|fim_suffix|> <|fim_middle|> }}
ast_fragments
// file: hyperswitch/crates/common_utils/src/id_type/global_id/customer.rs | crate: common_utils fn try_from(value: GlobalCustomerId) -> Result<Self, Self::Error> { Self::try_from(std::borrow::Cow::from(value.get_string_repr().to_owned())) }
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/common_utils/src/id_type/global_id/customer.rs | crate: common_utils use crate::{errors, generate_id_with_default_len, generate_time_ordered_id_without_prefix, types}; /// Generate a new GlobalCustomerId from a cell id pub fn generate(cell_id: &crate::id_type::CellId) -> S...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use crate::{ address, errors::api_error_response::ApiErrorResponse, mandates, payments, router_data::{self, RouterData}, router_flow_types as flows, router_response_typ...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use super::payment_method_data::PaymentMethodData; use crate::{ address, errors::api_error_response::ApiErrorResponse, mandates, payments, router_data::{self, RouterData}, ...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use crate::{ address, errors::api_error_response::ApiErrorResponse, mandates, payments, router_data::{self, RouterData}, router_flow_types as flows, router_response_typ...
ast_fragments
// file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use api_models::payments::{AdditionalPaymentData, RequestSurchargeDetails}; use crate::{ address, errors::api_error_response::ApiErrorResponse, mandates, payments, router_data::{self, Rou...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use api_models::payments::{AdditionalPaymentData, RequestSurchargeDetails}; use common_utils::{consts, errors, ext_traits::OptionExt, id_type, pii, types::MinorUnit}; use diesel_models::{e...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use common_utils::{consts, errors, ext_traits::OptionExt, id_type, pii, types::MinorUnit}; use crate::{ address, errors::api_error_response::ApiErrorResponse, mandates, payment...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use common_utils::{consts, errors, ext_traits::OptionExt, id_type, pii, types::MinorUnit}; use crate::{ address, errors::api_error_response::ApiErrorResponse, mandates, payment...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use common_utils::{consts, errors, ext_traits::OptionExt, id_type, pii, types::MinorUnit}; use diesel_models::{enums as storage_enums, types::OrderDetailsWithAmount}; fn from(value: common...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use super::payment_method_data::PaymentMethodData; use crate::{ address, errors::api_error_response::ApiErrorResponse, mandates, payments, router_data::{self, RouterData}, ...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use masking::Secret; use super::payment_method_data::PaymentMethodData; fn try_from(data: CompleteAuthorizeData) -> Result<Self, Self::Error> { {<|fim_suffix|> <|fim_middle|> }}
ast_fragments
// file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use masking::Secret; use super::payment_method_data::PaymentMethodData; fn try_from(data: PaymentsAuthorizeData) -> Result<Self, Self::Error> { Ok(Self { payment_method_data: Some(dat...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use super::payment_method_data::PaymentMethodData; fn try_from(data: PaymentsAuthorizeData) -> Result<Self, Self::Error> { {<|fim_suffix|> <|fim_middle|> }}
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use super::payment_method_data::PaymentMethodData; use crate::{ address, errors::api_error_response::ApiErrorResponse, mandates, payments, router_data::{self, RouterData}, ...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use super::payment_method_data::PaymentMethodData; fn try_from(data: SetupMandateRequestData) -> Result<Self, Self::Error> { <|fim_suffix|> <|fim_middle|> }
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use super::payment_method_data::PaymentMethodData; use crate::{ address, errors::api_error_response::ApiErrorResponse, mandates, payments, router_data::{self, RouterData}, ...
ast_fragments
// file: hyperswitch/crates/hyperswitch_domain_models/src/router_request_types.rs | crate: hyperswitch_domain_models use super::payment_method_data::PaymentMethodData; fn try_from(data: SetupMandateRequestData) -> Result<Self, Self::Error> { Ok(Self { email: data.email, payment_method_da...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use crate::{ address::Address, business_profile, customer, errors, merchant_account, merchant_connector_account, payment_address, payment_method_data, routing, ApiModelToDieselModelConvert...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUni...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use api_models::payments::SessionToken; use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, typ...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use api_models::payments::SessionToken; use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, typ...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use api_models::payments::SessionToken; use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, typ...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use std::marker::PhantomData; use api_models::payments::SessionToken; use common_types::primitive_wrappers::{ AlwaysRequestExtendedAuthorization, RequestExtendedAuthorizationBool, }; use common_ut...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUni...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models #[derive(Clone)] pub struct RevenueRecoveryData { pub billing_connector_id: id_type::MerchantConnectorAccountId, pub processor_payment_method_token: String, pub connector_customer_id: Stri...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUni...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUni...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUni...
ast_fragments
// file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUnit}, }; use dies...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_enums as storage_enums; pub fn with_source(payment_confirm_source: common_enums::PaymentSource) -> Self { <|fim_suffix|> <|fim_middle|> }
ast_fragments
// file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUnit}, }; use dies...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUni...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::ext_traits::OptionExt; use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, ty...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use api_models::payments::SessionToken; use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, typ...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUni...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUni...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUni...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUni...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUni...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUni...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUni...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::ext_traits::OptionExt; use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, ty...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use api_models::payments::SessionToken; use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, typ...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use api_models::payments::SessionToken; use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, typ...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_traits::ValueExt, id_type, pii, types::{keymanager::ToEncryptable, MinorUni...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/payments.rs | crate: hyperswitch_domain_models use api_models::payments::SessionToken; use common_utils::ext_traits::OptionExt; use common_utils::{ self, crypto::Encryptable, encryption::Encryption, errors::CustomResult, ext_tr...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ BillingConnectorPaymentDetails as ApiBillingConnectorPaymentDetails, PaymentRevenueRecoveryMetadata as ApiRevenueRecoveryMetadata, }; fn convert_back(self) -> ApiBilling...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ BillingConnectorPaymentDetails as ApiBillingConnectorPaymentDetails, PaymentRevenueRecoveryMetadata as ApiRevenueRecoveryMetadata, }; fn convert_from(from: ApiBillingCon...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ BillingConnectorPaymentDetails as ApiBillingConnectorPaymentDetails, PaymentRevenueRecoveryMetadata as ApiRevenueRecoveryMetadata, }; fn convert_back(self) -> ApiRevenue...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ BillingConnectorPaymentDetails as ApiBillingConnectorPaymentDetails, PaymentRevenueRecoveryMetadata as ApiRevenueRecoveryMetadata, }; use diesel_models::types::{BillingC...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
// file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, OrderDetailsWithA...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments
<|fim_prefix|> // file: hyperswitch/crates/hyperswitch_domain_models/src/lib.rs | crate: hyperswitch_domain_models use api_models::payments::{ ApplePayRecurringDetails as ApiApplePayRecurringDetails, ApplePayRegularBillingDetails as ApiApplePayRegularBillingDetails, FeatureMetadata as ApiFeatureMetadata, Or...
ast_fragments