id
stringlengths
20
153
type
stringclasses
1 value
granularity
stringclasses
14 values
content
stringlengths
16
84.3k
metadata
dict
hyperswitch_struct_api_models_6659563496707808243
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct ToggleAllKVResponse { ///Total number of updated merchants #[schema(example = 20)] pub total_updated: usize, /// Status of KV for the specific merchant #[schema(example = true)] pub kv_enabled: bool, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ToggleAllKVResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_7917517897045940035
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct MerchantConnectorDetailsWrap { /// Creds Identifier is to uniquely identify the credentials. Do not send any sensitive info, like encoded_data in this field. And do not send the string "null". pub creds_identifier: String, /// Merchant connector details type type. Base64 Encode the credentials and send it in this type and send as a string. #[schema(value_type = Option<MerchantConnectorDetails>, example = r#"{ "connector_account_details": { "auth_type": "HeaderKey", "api_key":"sk_test_xxxxxexamplexxxxxx12345" }, "metadata": { "user_defined_field_1": "sample_1", "user_defined_field_2": "sample_2", }, }"#)] pub encoded_data: Option<Secret<String>>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "MerchantConnectorDetailsWrap", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-918598794225273841
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct MerchantConnectorDetails { /// Account details of the Connector. You can specify up to 50 keys, with key names up to 40 characters long and values up to 500 characters long. Useful for storing additional, structured information on an object. #[schema(value_type = Option<Object>,example = json!({ "auth_type": "HeaderKey","api_key": "Basic MyVerySecretApiKey" }))] pub connector_account_details: pii::SecretSerdeValue, /// Metadata is useful for storing additional, unstructured information on an object. #[schema(value_type = Option<Object>,max_length = 255,example = json!({ "city": "NY", "unit": "245" }))] pub metadata: Option<pii::SecretSerdeValue>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "MerchantConnectorDetails", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_1305966680782841680
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct ProfileCreate { /// The name of profile #[schema(max_length = 64)] pub profile_name: Option<String>, /// The URL to redirect after the completion of the operation #[schema(value_type = Option<String>, max_length = 255, example = "https://www.example.com/success")] pub return_url: Option<url::Url>, /// A boolean value to indicate if payment response hash needs to be enabled #[schema(default = true, example = true)] pub enable_payment_response_hash: Option<bool>, /// Refers to the hash key used for calculating the signature for webhooks and redirect response. If the value is not provided, a value is automatically generated. pub payment_response_hash_key: Option<String>, /// A boolean value to indicate if redirect to merchant with http post needs to be enabled #[schema(default = false, example = true)] pub redirect_to_merchant_with_http_post: Option<bool>, /// Webhook related details pub webhook_details: Option<WebhookDetails>, /// Metadata is useful for storing additional, unstructured information on an object. #[schema(value_type = Option<Object>, example = r#"{ "city": "NY", "unit": "245" }"#)] pub metadata: Option<pii::SecretSerdeValue>, /// The routing algorithm to be used for routing payments to desired connectors #[schema(value_type = Option<Object>,example = json!({"type": "single", "data": "stripe"}))] pub routing_algorithm: Option<serde_json::Value>, /// Will be used to determine the time till which your payment will be active once the payment session starts #[schema(example = 900)] pub intent_fulfillment_time: Option<u32>, /// The frm routing algorithm to be used for routing payments to desired FRM's #[schema(value_type = Option<Object>,example = json!({"type": "single", "data": "signifyd"}))] pub frm_routing_algorithm: Option<serde_json::Value>, /// The routing algorithm to be used to process the incoming request from merchant to outgoing payment processor or payment method. The default is 'Custom' #[cfg(feature = "payouts")] #[schema(value_type = Option<StaticRoutingAlgorithm>,example = json!({"type": "single", "data": "wise"}))] pub payout_routing_algorithm: Option<serde_json::Value>, /// Verified Apple Pay domains for a particular profile pub applepay_verified_domains: Option<Vec<String>>, /// Client Secret Default expiry for all payments created under this profile #[schema(example = 900)] pub session_expiry: Option<u32>, /// Default Payment Link config for all payment links created under this profile pub payment_link_config: Option<BusinessPaymentLinkConfig>, /// External 3DS authentication details pub authentication_connector_details: Option<AuthenticationConnectorDetails>, /// Whether to use the billing details passed when creating the intent as payment method billing pub use_billing_as_payment_method_billing: Option<bool>, /// A boolean value to indicate if customer shipping details needs to be collected from wallet /// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc) #[schema(default = false, example = false)] pub collect_shipping_details_from_wallet_connector: Option<bool>, /// A boolean value to indicate if customer billing details needs to be collected from wallet /// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc) #[schema(default = false, example = false)] pub collect_billing_details_from_wallet_connector: Option<bool>, /// A boolean value to indicate if customer shipping details needs to be collected from wallet /// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc) #[schema(default = false, example = false)] pub always_collect_shipping_details_from_wallet_connector: Option<bool>, /// A boolean value to indicate if customer billing details needs to be collected from wallet /// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc) #[schema(default = false, example = false)] pub always_collect_billing_details_from_wallet_connector: Option<bool>, /// Indicates if the MIT (merchant initiated transaction) payments can be made connector /// agnostic, i.e., MITs may be processed through different connector than CIT (customer /// initiated transaction) based on the routing rules. /// If set to `false`, MIT will go through the same connector as the CIT. pub is_connector_agnostic_mit_enabled: Option<bool>, /// Default payout link config #[schema(value_type = Option<BusinessPayoutLinkConfig>)] pub payout_link_config: Option<BusinessPayoutLinkConfig>, /// These key-value pairs are sent as additional custom headers in the outgoing webhook request. It is recommended not to use more than four key-value pairs. #[schema(value_type = Option<Object>, example = r#"{ "key1": "value-1", "key2": "value-2" }"#)] pub outgoing_webhook_custom_http_headers: Option<HashMap<String, String>>, /// Merchant Connector id to be stored for tax_calculator connector #[schema(value_type = Option<String>)] pub tax_connector_id: Option<id_type::MerchantConnectorAccountId>, /// Indicates if tax_calculator connector is enabled or not. /// If set to `true` tax_connector_id will be checked. #[serde(default)] pub is_tax_connector_enabled: bool, /// Indicates if network tokenization is enabled or not. #[serde(default)] pub is_network_tokenization_enabled: bool, /// Indicates if is_auto_retries_enabled is enabled or not. pub is_auto_retries_enabled: Option<bool>, /// Maximum number of auto retries allowed for a payment pub max_auto_retries_enabled: Option<u8>, /// Bool indicating if extended authentication must be requested for all payments #[schema(value_type = Option<bool>)] pub always_request_extended_authorization: Option<primitive_wrappers::AlwaysRequestExtendedAuthorization>, /// Indicates if click to pay is enabled or not. #[serde(default)] pub is_click_to_pay_enabled: bool, /// Product authentication ids #[schema(value_type = Option<Object>, example = r#"{ "click_to_pay": "mca_ushduqwhdohwd", "netcetera": "mca_kwqhudqwd" }"#)] pub authentication_product_ids: Option<common_types::payments::AuthenticationConnectorAccountMap>, /// Card Testing Guard Configs pub card_testing_guard_config: Option<CardTestingGuardConfig>, ///Indicates if clear pan retries is enabled or not. pub is_clear_pan_retries_enabled: Option<bool>, /// Indicates if 3ds challenge is forced pub force_3ds_challenge: Option<bool>, /// Indicates if debit routing is enabled or not #[schema(value_type = Option<bool>)] pub is_debit_routing_enabled: Option<bool>, //Merchant country for the profile #[schema(value_type = Option<CountryAlpha2>, example = "US")] pub merchant_business_country: Option<api_enums::CountryAlpha2>, /// Indicates if the redirection has to open in the iframe #[schema(example = false)] pub is_iframe_redirection_enabled: Option<bool>, /// Indicates if pre network tokenization is enabled or not pub is_pre_network_tokenization_enabled: Option<bool>, /// Four-digit code assigned based on business type to determine processing fees and risk level #[schema(value_type = Option<MerchantCategoryCode>, example = "5411")] pub merchant_category_code: Option<api_enums::MerchantCategoryCode>, /// Merchant country code. /// This is a 3-digit ISO 3166-1 numeric country code that represents the country in which the merchant is registered or operates. /// Merchants typically receive this value based on their business registration information or during onboarding via payment processors or acquiring banks. /// It is used in payment processing, fraud detection, and regulatory compliance to determine regional rules and routing behavior. #[schema(value_type = Option<MerchantCountryCode>, example = "840")] pub merchant_country_code: Option<common_types::payments::MerchantCountryCode>, /// Time interval (in hours) for polling the connector to check for new disputes #[schema(value_type = Option<i32>, example = 2)] pub dispute_polling_interval: Option<primitive_wrappers::DisputePollingIntervalInHours>, /// Indicates if manual retry for payment is enabled or not pub is_manual_retry_enabled: Option<bool>, /// Bool indicating if overcapture must be requested for all payments #[schema(value_type = Option<bool>)] pub always_enable_overcapture: Option<primitive_wrappers::AlwaysEnableOvercaptureBool>, /// Indicates if external vault is enabled or not. #[schema(value_type = Option<ExternalVaultEnabled>, example = "Enable")] pub is_external_vault_enabled: Option<common_enums::ExternalVaultEnabled>, /// External Vault Connector Details pub external_vault_connector_details: Option<ExternalVaultConnectorDetails>, /// Merchant Connector id to be stored for billing_processor connector #[schema(value_type = Option<String>)] pub billing_processor_id: Option<id_type::MerchantConnectorAccountId>, /// Flag to enable Level 2 and Level 3 processing data for card transactions #[schema(value_type = Option<bool>)] pub is_l2_l3_enabled: Option<bool>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ProfileCreate", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_1305966680782841680
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct ProfileCreate { /// The name of profile #[schema(max_length = 64)] pub profile_name: String, /// The URL to redirect after the completion of the operation #[schema(value_type = Option<String>, max_length = 255, example = "https://www.example.com/success")] pub return_url: Option<common_utils::types::Url>, /// A boolean value to indicate if payment response hash needs to be enabled #[schema(default = true, example = true)] pub enable_payment_response_hash: Option<bool>, /// Refers to the hash key used for calculating the signature for webhooks and redirect response. If the value is not provided, a value is automatically generated. pub payment_response_hash_key: Option<String>, /// A boolean value to indicate if redirect to merchant with http post needs to be enabled #[schema(default = false, example = true)] pub redirect_to_merchant_with_http_post: Option<bool>, /// Webhook related details pub webhook_details: Option<WebhookDetails>, /// Metadata is useful for storing additional, unstructured information on an object. #[schema(value_type = Option<Object>, example = r#"{ "city": "NY", "unit": "245" }"#)] pub metadata: Option<pii::SecretSerdeValue>, /// Will be used to determine the time till which your payment will be active once the payment session starts #[schema(value_type = Option<u32>, example = 900)] pub order_fulfillment_time: Option<OrderFulfillmentTime>, /// Whether the order fulfillment time is calculated from the origin or the time of creating the payment, or confirming the payment #[schema(value_type = Option<OrderFulfillmentTimeOrigin>, example = "create")] pub order_fulfillment_time_origin: Option<api_enums::OrderFulfillmentTimeOrigin>, /// Verified Apple Pay domains for a particular profile pub applepay_verified_domains: Option<Vec<String>>, /// Client Secret Default expiry for all payments created under this profile #[schema(example = 900)] pub session_expiry: Option<u32>, /// Default Payment Link config for all payment links created under this profile pub payment_link_config: Option<BusinessPaymentLinkConfig>, /// External 3DS authentication details pub authentication_connector_details: Option<AuthenticationConnectorDetails>, /// Whether to use the billing details passed when creating the intent as payment method billing pub use_billing_as_payment_method_billing: Option<bool>, /// A boolean value to indicate if customer shipping details needs to be collected from wallet /// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc) #[schema(default = false, example = false)] pub collect_shipping_details_from_wallet_connector_if_required: Option<bool>, /// A boolean value to indicate if customer billing details needs to be collected from wallet /// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc) #[schema(default = false, example = false)] pub collect_billing_details_from_wallet_connector_if_required: Option<bool>, /// A boolean value to indicate if customer shipping details needs to be collected from wallet /// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc) #[schema(default = false, example = false)] pub always_collect_shipping_details_from_wallet_connector: Option<bool>, /// A boolean value to indicate if customer billing details needs to be collected from wallet /// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc) #[schema(default = false, example = false)] pub always_collect_billing_details_from_wallet_connector: Option<bool>, /// Indicates if the MIT (merchant initiated transaction) payments can be made connector /// agnostic, i.e., MITs may be processed through different connector than CIT (customer /// initiated transaction) based on the routing rules. /// If set to `false`, MIT will go through the same connector as the CIT. pub is_connector_agnostic_mit_enabled: Option<bool>, /// Default payout link config #[schema(value_type = Option<BusinessPayoutLinkConfig>)] pub payout_link_config: Option<BusinessPayoutLinkConfig>, /// These key-value pairs are sent as additional custom headers in the outgoing webhook request. It is recommended not to use more than four key-value pairs. #[schema(value_type = Option<Object>, example = r#"{ "key1": "value-1", "key2": "value-2" }"#)] pub outgoing_webhook_custom_http_headers: Option<HashMap<String, String>>, /// Merchant Connector id to be stored for tax_calculator connector #[schema(value_type = Option<String>)] pub tax_connector_id: Option<id_type::MerchantConnectorAccountId>, /// Indicates if tax_calculator connector is enabled or not. /// If set to `true` tax_connector_id will be checked. #[serde(default)] pub is_tax_connector_enabled: bool, /// Indicates if network tokenization is enabled or not. #[serde(default)] pub is_network_tokenization_enabled: bool, /// Indicates if click to pay is enabled or not. #[schema(default = false, example = false)] #[serde(default)] pub is_click_to_pay_enabled: bool, /// Product authentication ids #[schema(value_type = Option<Object>, example = r#"{ "click_to_pay": "mca_ushduqwhdohwd", "netcetera": "mca_kwqhudqwd" }"#)] pub authentication_product_ids: Option<common_types::payments::AuthenticationConnectorAccountMap>, /// Card Testing Guard Configs pub card_testing_guard_config: Option<CardTestingGuardConfig>, ///Indicates if clear pan retries is enabled or not. pub is_clear_pan_retries_enabled: Option<bool>, /// Indicates if debit routing is enabled or not #[schema(value_type = Option<bool>)] pub is_debit_routing_enabled: Option<bool>, //Merchant country for the profile #[schema(value_type = Option<CountryAlpha2>, example = "US")] pub merchant_business_country: Option<api_enums::CountryAlpha2>, /// Indicates if the redirection has to open in the iframe #[schema(example = false)] pub is_iframe_redirection_enabled: Option<bool>, /// Indicates if external vault is enabled or not. pub is_external_vault_enabled: Option<bool>, /// External Vault Connector Details pub external_vault_connector_details: Option<ExternalVaultConnectorDetails>, /// Four-digit code assigned based on business type to determine processing fees and risk level #[schema(value_type = Option<MerchantCategoryCode>, example = "5411")] pub merchant_category_code: Option<api_enums::MerchantCategoryCode>, /// Merchant country code. /// This is a 3-digit ISO 3166-1 numeric country code that represents the country in which the merchant is registered or operates. /// Merchants typically receive this value based on their business registration information or during onboarding via payment processors or acquiring banks. /// It is used in payment processing, fraud detection, and regulatory compliance to determine regional rules and routing behavior. #[schema(value_type = Option<MerchantCountryCode>, example = "840")] pub merchant_country_code: Option<common_types::payments::MerchantCountryCode>, /// Enable split payments, i.e., split the amount between multiple payment methods #[schema(value_type = Option<SplitTxnsEnabled>, default = "skip")] pub split_txns_enabled: Option<common_enums::SplitTxnsEnabled>, /// Merchant Connector id to be stored for billing_processor connector #[schema(value_type = Option<String>)] pub billing_processor_id: Option<id_type::MerchantConnectorAccountId>, /// Flag to enable Level 2 and Level 3 processing data for card transactions #[schema(value_type = Option<bool>)] pub is_l2_l3_enabled: Option<bool>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ProfileCreate", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-6073304166082275535
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct ProfileResponse { /// The identifier for Merchant Account #[schema(max_length = 64, example = "y3oqhf46pyzuxjbcn2giaqnb44", value_type = String)] pub merchant_id: id_type::MerchantId, /// The identifier for profile. This must be used for creating merchant accounts, payments and payouts #[schema(max_length = 64, value_type = String, example = "pro_abcdefghijklmnopqrstuvwxyz")] pub profile_id: id_type::ProfileId, /// Name of the profile #[schema(max_length = 64)] pub profile_name: String, /// The URL to redirect after the completion of the operation #[schema(value_type = Option<String>, max_length = 255, example = "https://www.example.com/success")] pub return_url: Option<String>, /// A boolean value to indicate if payment response hash needs to be enabled #[schema(default = true, example = true)] pub enable_payment_response_hash: bool, /// Refers to the hash key used for calculating the signature for webhooks and redirect response. If the value is not provided, a value is automatically generated. pub payment_response_hash_key: Option<String>, /// A boolean value to indicate if redirect to merchant with http post needs to be enabled #[schema(default = false, example = true)] pub redirect_to_merchant_with_http_post: bool, /// Webhook related details pub webhook_details: Option<WebhookDetails>, /// Metadata is useful for storing additional, unstructured information on an object. #[schema(value_type = Option<Object>, example = r#"{ "city": "NY", "unit": "245" }"#)] pub metadata: Option<pii::SecretSerdeValue>, /// The routing algorithm to be used for routing payments to desired connectors #[schema(value_type = Option<Object>,example = json!({"type": "single", "data": "stripe"}))] pub routing_algorithm: Option<serde_json::Value>, /// Will be used to determine the time till which your payment will be active once the payment session starts #[schema(example = 900)] pub intent_fulfillment_time: Option<i64>, /// The routing algorithm to be used to process the incoming request from merchant to outgoing payment processor or payment method. The default is 'Custom' #[schema(value_type = Option<Object>,example = json!({"type": "single", "data": "signifyd"}))] pub frm_routing_algorithm: Option<serde_json::Value>, /// The routing algorithm to be used to process the incoming request from merchant to outgoing payment processor or payment method. The default is 'Custom' #[cfg(feature = "payouts")] #[schema(value_type = Option<StaticRoutingAlgorithm>,example = json!({"type": "single", "data": "wise"}))] pub payout_routing_algorithm: Option<serde_json::Value>, /// Verified Apple Pay domains for a particular profile pub applepay_verified_domains: Option<Vec<String>>, /// Client Secret Default expiry for all payments created under this profile #[schema(example = 900)] pub session_expiry: Option<i64>, /// Default Payment Link config for all payment links created under this profile #[schema(value_type = Option<BusinessPaymentLinkConfig>)] pub payment_link_config: Option<BusinessPaymentLinkConfig>, /// External 3DS authentication details pub authentication_connector_details: Option<AuthenticationConnectorDetails>, // Whether to use the billing details passed when creating the intent as payment method billing pub use_billing_as_payment_method_billing: Option<bool>, /// Merchant's config to support extended card info feature pub extended_card_info_config: Option<ExtendedCardInfoConfig>, /// A boolean value to indicate if customer shipping details needs to be collected from wallet /// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc) #[schema(default = false, example = false)] pub collect_shipping_details_from_wallet_connector: Option<bool>, /// A boolean value to indicate if customer billing details needs to be collected from wallet /// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc) #[schema(default = false, example = false)] pub collect_billing_details_from_wallet_connector: Option<bool>, /// A boolean value to indicate if customer shipping details needs to be collected from wallet /// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc) #[schema(default = false, example = false)] pub always_collect_shipping_details_from_wallet_connector: Option<bool>, /// A boolean value to indicate if customer billing details needs to be collected from wallet /// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc) #[schema(default = false, example = false)] pub always_collect_billing_details_from_wallet_connector: Option<bool>, /// Indicates if the MIT (merchant initiated transaction) payments can be made connector /// agnostic, i.e., MITs may be processed through different connector than CIT (customer /// initiated transaction) based on the routing rules. /// If set to `false`, MIT will go through the same connector as the CIT. pub is_connector_agnostic_mit_enabled: Option<bool>, /// Default payout link config #[schema(value_type = Option<BusinessPayoutLinkConfig>)] pub payout_link_config: Option<BusinessPayoutLinkConfig>, /// These key-value pairs are sent as additional custom headers in the outgoing webhook request. #[schema(value_type = Option<Object>, example = r#"{ "key1": "value-1", "key2": "value-2" }"#)] pub outgoing_webhook_custom_http_headers: Option<MaskedHeaders>, /// Merchant Connector id to be stored for tax_calculator connector #[schema(value_type = Option<String>)] pub tax_connector_id: Option<id_type::MerchantConnectorAccountId>, /// Indicates if tax_calculator connector is enabled or not. /// If set to `true` tax_connector_id will be checked. pub is_tax_connector_enabled: bool, /// Indicates if network tokenization is enabled or not. #[schema(default = false, example = false)] pub is_network_tokenization_enabled: bool, /// Indicates if is_auto_retries_enabled is enabled or not. #[schema(default = false, example = false)] pub is_auto_retries_enabled: bool, /// Maximum number of auto retries allowed for a payment pub max_auto_retries_enabled: Option<i16>, /// Bool indicating if extended authentication must be requested for all payments #[schema(value_type = Option<bool>)] pub always_request_extended_authorization: Option<primitive_wrappers::AlwaysRequestExtendedAuthorization>, /// Indicates if click to pay is enabled or not. #[schema(default = false, example = false)] pub is_click_to_pay_enabled: bool, /// Product authentication ids #[schema(value_type = Option<Object>, example = r#"{ "click_to_pay": "mca_ushduqwhdohwd", "netcetera": "mca_kwqhudqwd" }"#)] pub authentication_product_ids: Option<common_types::payments::AuthenticationConnectorAccountMap>, /// Card Testing Guard Configs pub card_testing_guard_config: Option<CardTestingGuardConfig>, ///Indicates if clear pan retries is enabled or not. pub is_clear_pan_retries_enabled: bool, /// Indicates if 3ds challenge is forced pub force_3ds_challenge: bool, /// Indicates if debit routing is enabled or not #[schema(value_type = Option<bool>)] pub is_debit_routing_enabled: Option<bool>, //Merchant country for the profile #[schema(value_type = Option<CountryAlpha2>, example = "US")] pub merchant_business_country: Option<api_enums::CountryAlpha2>, /// Indicates if pre network tokenization is enabled or not #[schema(default = false, example = false)] pub is_pre_network_tokenization_enabled: bool, /// Acquirer configs #[schema(value_type = Option<Vec<ProfileAcquirerResponse>>)] pub acquirer_configs: Option<Vec<ProfileAcquirerResponse>>, /// Indicates if the redirection has to open in the iframe #[schema(example = false)] pub is_iframe_redirection_enabled: Option<bool>, /// Four-digit code assigned based on business type to determine processing fees and risk level #[schema(value_type = Option<MerchantCategoryCode>, example = "5411")] pub merchant_category_code: Option<api_enums::MerchantCategoryCode>, /// Merchant country code. /// This is a 3-digit ISO 3166-1 numeric country code that represents the country in which the merchant is registered or operates. /// Merchants typically receive this value based on their business registration information or during onboarding via payment processors or acquiring banks. /// It is used in payment processing, fraud detection, and regulatory compliance to determine regional rules and routing behavior. #[schema(value_type = Option<MerchantCountryCode>, example = "840")] pub merchant_country_code: Option<common_types::payments::MerchantCountryCode>, /// Time interval (in hours) for polling the connector to check dispute statuses #[schema(value_type = Option<u32>, example = 2)] pub dispute_polling_interval: Option<primitive_wrappers::DisputePollingIntervalInHours>, /// Indicates if manual retry for payment is enabled or not pub is_manual_retry_enabled: Option<bool>, /// Bool indicating if overcapture must be requested for all payments #[schema(value_type = Option<bool>)] pub always_enable_overcapture: Option<primitive_wrappers::AlwaysEnableOvercaptureBool>, /// Indicates if external vault is enabled or not. #[schema(value_type = Option<ExternalVaultEnabled>, example = "Enable")] pub is_external_vault_enabled: Option<common_enums::ExternalVaultEnabled>, /// External Vault Connector Details pub external_vault_connector_details: Option<ExternalVaultConnectorDetails>, /// Merchant Connector id to be stored for billing_processor connector #[schema(value_type = Option<String>)] pub billing_processor_id: Option<id_type::MerchantConnectorAccountId>, /// Flag to enable Level 2 and Level 3 processing data for card transactions #[schema(value_type = Option<bool>)] pub is_l2_l3_enabled: Option<bool>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ProfileResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-6073304166082275535
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct ProfileResponse { /// The identifier for Merchant Account #[schema(max_length = 64, example = "y3oqhf46pyzuxjbcn2giaqnb44", value_type = String)] pub merchant_id: id_type::MerchantId, /// The identifier for profile. This must be used for creating merchant accounts, payments and payouts #[schema(max_length = 64, value_type = String, example = "pro_abcdefghijklmnopqrstuvwxyz")] pub id: id_type::ProfileId, /// Name of the profile #[schema(max_length = 64)] pub profile_name: String, /// The URL to redirect after the completion of the operation #[schema(value_type = Option<String>, max_length = 255, example = "https://www.example.com/success")] pub return_url: Option<common_utils::types::Url>, /// A boolean value to indicate if payment response hash needs to be enabled #[schema(default = true, example = true)] pub enable_payment_response_hash: bool, /// Refers to the hash key used for calculating the signature for webhooks and redirect response. If the value is not provided, a value is automatically generated. pub payment_response_hash_key: Option<String>, /// A boolean value to indicate if redirect to merchant with http post needs to be enabled #[schema(default = false, example = true)] pub redirect_to_merchant_with_http_post: bool, /// Webhook related details pub webhook_details: Option<WebhookDetails>, /// Metadata is useful for storing additional, unstructured information on an object. #[schema(value_type = Option<Object>, example = r#"{ "city": "NY", "unit": "245" }"#)] pub metadata: Option<pii::SecretSerdeValue>, /// Verified Apple Pay domains for a particular profile pub applepay_verified_domains: Option<Vec<String>>, /// Client Secret Default expiry for all payments created under this profile #[schema(example = 900)] pub session_expiry: Option<i64>, /// Default Payment Link config for all payment links created under this profile #[schema(value_type = Option<BusinessPaymentLinkConfig>)] pub payment_link_config: Option<BusinessPaymentLinkConfig>, /// External 3DS authentication details pub authentication_connector_details: Option<AuthenticationConnectorDetails>, // Whether to use the billing details passed when creating the intent as payment method billing pub use_billing_as_payment_method_billing: Option<bool>, /// Merchant's config to support extended card info feature pub extended_card_info_config: Option<ExtendedCardInfoConfig>, /// A boolean value to indicate if customer shipping details needs to be collected from wallet /// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc) #[schema(default = false, example = false)] pub collect_shipping_details_from_wallet_connector_if_required: Option<bool>, /// A boolean value to indicate if customer billing details needs to be collected from wallet /// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc) #[schema(default = false, example = false)] pub collect_billing_details_from_wallet_connector_if_required: Option<bool>, /// A boolean value to indicate if customer shipping details needs to be collected from wallet /// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc) #[schema(default = false, example = false)] pub always_collect_shipping_details_from_wallet_connector: Option<bool>, /// A boolean value to indicate if customer billing details needs to be collected from wallet /// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc) #[schema(default = false, example = false)] pub always_collect_billing_details_from_wallet_connector: Option<bool>, /// Indicates if the MIT (merchant initiated transaction) payments can be made connector /// agnostic, i.e., MITs may be processed through different connector than CIT (customer /// initiated transaction) based on the routing rules. /// If set to `false`, MIT will go through the same connector as the CIT. pub is_connector_agnostic_mit_enabled: Option<bool>, /// Default payout link config #[schema(value_type = Option<BusinessPayoutLinkConfig>)] pub payout_link_config: Option<BusinessPayoutLinkConfig>, /// These key-value pairs are sent as additional custom headers in the outgoing webhook request. #[schema(value_type = Option<Object>, example = r#"{ "key1": "value-1", "key2": "value-2" }"#)] pub outgoing_webhook_custom_http_headers: Option<MaskedHeaders>, /// Will be used to determine the time till which your payment will be active once the payment session starts #[schema(value_type = Option<u32>, example = 900)] pub order_fulfillment_time: Option<OrderFulfillmentTime>, /// Whether the order fulfillment time is calculated from the origin or the time of creating the payment, or confirming the payment #[schema(value_type = Option<OrderFulfillmentTimeOrigin>, example = "create")] pub order_fulfillment_time_origin: Option<api_enums::OrderFulfillmentTimeOrigin>, /// Merchant Connector id to be stored for tax_calculator connector #[schema(value_type = Option<String>)] pub tax_connector_id: Option<id_type::MerchantConnectorAccountId>, /// Indicates if tax_calculator connector is enabled or not. /// If set to `true` tax_connector_id will be checked. pub is_tax_connector_enabled: bool, /// Indicates if network tokenization is enabled or not. #[schema(default = false, example = false)] pub is_network_tokenization_enabled: bool, /// Indicates if CVV should be collected during payment or not. #[schema(value_type = Option<bool>)] pub should_collect_cvv_during_payment: Option<primitive_wrappers::ShouldCollectCvvDuringPayment>, /// Indicates if click to pay is enabled or not. #[schema(default = false, example = false)] pub is_click_to_pay_enabled: bool, /// Product authentication ids #[schema(value_type = Option<Object>, example = r#"{ "click_to_pay": "mca_ushduqwhdohwd", "netcetera": "mca_kwqhudqwd" }"#)] pub authentication_product_ids: Option<common_types::payments::AuthenticationConnectorAccountMap>, /// Card Testing Guard Configs pub card_testing_guard_config: Option<CardTestingGuardConfig>, ///Indicates if clear pan retries is enabled or not. pub is_clear_pan_retries_enabled: bool, /// Indicates if debit routing is enabled or not #[schema(value_type = Option<bool>)] pub is_debit_routing_enabled: Option<bool>, //Merchant country for the profile #[schema(value_type = Option<CountryAlpha2>, example = "US")] pub merchant_business_country: Option<api_enums::CountryAlpha2>, /// Indicates if the redirection has to open in the iframe #[schema(example = false)] pub is_iframe_redirection_enabled: Option<bool>, /// Indicates if external vault is enabled or not. pub is_external_vault_enabled: Option<bool>, /// External Vault Connector Details pub external_vault_connector_details: Option<ExternalVaultConnectorDetails>, /// Four-digit code assigned based on business type to determine processing fees and risk level #[schema(value_type = Option<MerchantCategoryCode>, example = "5411")] pub merchant_category_code: Option<api_enums::MerchantCategoryCode>, /// Merchant country code. /// This is a 3-digit ISO 3166-1 numeric country code that represents the country in which the merchant is registered or operates. /// Merchants typically receive this value based on their business registration information or during onboarding via payment processors or acquiring banks. /// It is used in payment processing, fraud detection, and regulatory compliance to determine regional rules and routing behavior. #[schema(value_type = Option<MerchantCountryCode>, example = "840")] pub merchant_country_code: Option<common_types::payments::MerchantCountryCode>, /// Enable split payments, i.e., split the amount between multiple payment methods #[schema(value_type = SplitTxnsEnabled, default = "skip")] pub split_txns_enabled: common_enums::SplitTxnsEnabled, /// Indicates the state of revenue recovery algorithm type #[schema(value_type = Option<RevenueRecoveryAlgorithmType>, example = "cascading")] pub revenue_recovery_retry_algorithm_type: Option<common_enums::enums::RevenueRecoveryAlgorithmType>, /// Merchant Connector id to be stored for billing_processor connector #[schema(value_type = Option<String>)] pub billing_processor_id: Option<id_type::MerchantConnectorAccountId>, /// Flag to enable Level 2 and Level 3 processing data for card transactions #[schema(value_type = Option<bool>)] pub is_l2_l3_enabled: Option<bool>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ProfileResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-3721225433986921650
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct ProfileUpdate { /// The name of profile #[schema(max_length = 64)] pub profile_name: Option<String>, /// The URL to redirect after the completion of the operation #[schema(value_type = Option<String>, max_length = 255, example = "https://www.example.com/success")] pub return_url: Option<url::Url>, /// A boolean value to indicate if payment response hash needs to be enabled #[schema(default = true, example = true)] pub enable_payment_response_hash: Option<bool>, /// Refers to the hash key used for calculating the signature for webhooks and redirect response. pub payment_response_hash_key: Option<String>, /// A boolean value to indicate if redirect to merchant with http post needs to be enabled #[schema(default = false, example = true)] pub redirect_to_merchant_with_http_post: Option<bool>, /// Webhook related details pub webhook_details: Option<WebhookDetails>, /// Metadata is useful for storing additional, unstructured information on an object. #[schema(value_type = Option<Object>, example = r#"{ "city": "NY", "unit": "245" }"#)] pub metadata: Option<pii::SecretSerdeValue>, /// The routing algorithm to be used for routing payments to desired connectors #[schema(value_type = Option<Object>,example = json!({"type": "single", "data": "stripe"}))] pub routing_algorithm: Option<serde_json::Value>, /// Will be used to determine the time till which your payment will be active once the payment session starts #[schema(example = 900)] pub intent_fulfillment_time: Option<u32>, /// The frm routing algorithm to be used for routing payments to desired FRM's #[schema(value_type = Option<Object>,example = json!({"type": "single", "data": "signifyd"}))] pub frm_routing_algorithm: Option<serde_json::Value>, /// The routing algorithm to be used to process the incoming request from merchant to outgoing payment processor or payment method. The default is 'Custom' #[cfg(feature = "payouts")] #[schema(value_type = Option<StaticRoutingAlgorithm>,example = json!({"type": "single", "data": "wise"}))] pub payout_routing_algorithm: Option<serde_json::Value>, /// Verified Apple Pay domains for a particular profile pub applepay_verified_domains: Option<Vec<String>>, /// Client Secret Default expiry for all payments created under this profile #[schema(example = 900)] pub session_expiry: Option<u32>, /// Default Payment Link config for all payment links created under this profile pub payment_link_config: Option<BusinessPaymentLinkConfig>, /// External 3DS authentication details pub authentication_connector_details: Option<AuthenticationConnectorDetails>, /// Merchant's config to support extended card info feature pub extended_card_info_config: Option<ExtendedCardInfoConfig>, // Whether to use the billing details passed when creating the intent as payment method billing pub use_billing_as_payment_method_billing: Option<bool>, /// A boolean value to indicate if customer shipping details needs to be collected from wallet /// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc) #[schema(default = false, example = false)] pub collect_shipping_details_from_wallet_connector: Option<bool>, /// A boolean value to indicate if customer billing details needs to be collected from wallet /// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc) #[schema(default = false, example = false)] pub collect_billing_details_from_wallet_connector: Option<bool>, /// A boolean value to indicate if customer shipping details needs to be collected from wallet /// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc) #[schema(default = false, example = false)] pub always_collect_shipping_details_from_wallet_connector: Option<bool>, /// A boolean value to indicate if customer billing details needs to be collected from wallet /// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc) #[schema(default = false, example = false)] pub always_collect_billing_details_from_wallet_connector: Option<bool>, /// Bool indicating if extended authentication must be requested for all payments #[schema(value_type = Option<bool>)] pub always_request_extended_authorization: Option<primitive_wrappers::AlwaysRequestExtendedAuthorization>, /// Indicates if the MIT (merchant initiated transaction) payments can be made connector /// agnostic, i.e., MITs may be processed through different connector than CIT (customer /// initiated transaction) based on the routing rules. /// If set to `false`, MIT will go through the same connector as the CIT. pub is_connector_agnostic_mit_enabled: Option<bool>, /// Default payout link config #[schema(value_type = Option<BusinessPayoutLinkConfig>)] pub payout_link_config: Option<BusinessPayoutLinkConfig>, /// These key-value pairs are sent as additional custom headers in the outgoing webhook request. It is recommended not to use more than four key-value pairs. #[schema(value_type = Option<Object>, example = r#"{ "key1": "value-1", "key2": "value-2" }"#)] pub outgoing_webhook_custom_http_headers: Option<HashMap<String, String>>, /// Merchant Connector id to be stored for tax_calculator connector #[schema(value_type = Option<String>)] pub tax_connector_id: Option<id_type::MerchantConnectorAccountId>, /// Indicates if tax_calculator connector is enabled or not. /// If set to `true` tax_connector_id will be checked. pub is_tax_connector_enabled: Option<bool>, /// Indicates if dynamic routing is enabled or not. #[serde(default)] pub dynamic_routing_algorithm: Option<serde_json::Value>, /// Indicates if network tokenization is enabled or not. pub is_network_tokenization_enabled: Option<bool>, /// Indicates if is_auto_retries_enabled is enabled or not. pub is_auto_retries_enabled: Option<bool>, /// Maximum number of auto retries allowed for a payment pub max_auto_retries_enabled: Option<u8>, /// Indicates if click to pay is enabled or not. #[schema(default = false, example = false)] pub is_click_to_pay_enabled: Option<bool>, /// Product authentication ids #[schema(value_type = Option<Object>, example = r#"{ "click_to_pay": "mca_ushduqwhdohwd", "netcetera": "mca_kwqhudqwd" }"#)] pub authentication_product_ids: Option<common_types::payments::AuthenticationConnectorAccountMap>, /// Card Testing Guard Configs pub card_testing_guard_config: Option<CardTestingGuardConfig>, ///Indicates if clear pan retries is enabled or not. pub is_clear_pan_retries_enabled: Option<bool>, /// Indicates if 3ds challenge is forced pub force_3ds_challenge: Option<bool>, /// Indicates if debit routing is enabled or not #[schema(value_type = Option<bool>)] pub is_debit_routing_enabled: Option<bool>, //Merchant country for the profile #[schema(value_type = Option<CountryAlpha2>, example = "US")] pub merchant_business_country: Option<api_enums::CountryAlpha2>, /// Indicates if the redirection has to open in the iframe #[schema(example = false)] pub is_iframe_redirection_enabled: Option<bool>, /// Indicates if pre network tokenization is enabled or not #[schema(default = false, example = false)] pub is_pre_network_tokenization_enabled: Option<bool>, /// Four-digit code assigned based on business type to determine processing fees and risk level #[schema(value_type = Option<MerchantCategoryCode>, example = "5411")] pub merchant_category_code: Option<api_enums::MerchantCategoryCode>, /// Merchant country code. /// This is a 3-digit ISO 3166-1 numeric country code that represents the country in which the merchant is registered or operates. /// Merchants typically receive this value based on their business registration information or during onboarding via payment processors or acquiring banks. /// It is used in payment processing, fraud detection, and regulatory compliance to determine regional rules and routing behavior. #[schema(value_type = Option<MerchantCountryCode>, example = "840")] pub merchant_country_code: Option<common_types::payments::MerchantCountryCode>, /// Time interval (in hours) for polling the connector to check for new disputes #[schema(value_type = Option<u32>, example = 2)] pub dispute_polling_interval: Option<primitive_wrappers::DisputePollingIntervalInHours>, /// Indicates if manual retry for payment is enabled or not pub is_manual_retry_enabled: Option<bool>, /// Bool indicating if overcapture must be requested for all payments #[schema(value_type = Option<bool>)] pub always_enable_overcapture: Option<primitive_wrappers::AlwaysEnableOvercaptureBool>, /// Indicates if external vault is enabled or not. #[schema(value_type = Option<ExternalVaultEnabled>, example = "Enable")] pub is_external_vault_enabled: Option<common_enums::ExternalVaultEnabled>, /// External Vault Connector Details pub external_vault_connector_details: Option<ExternalVaultConnectorDetails>, /// Merchant Connector id to be stored for billing_processor connector #[schema(value_type = Option<String>)] pub billing_processor_id: Option<id_type::MerchantConnectorAccountId>, /// Flag to enable Level 2 and Level 3 processing data for card transactions #[schema(value_type = Option<bool>)] pub is_l2_l3_enabled: Option<bool>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ProfileUpdate", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-3721225433986921650
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct ProfileUpdate { /// The name of profile #[schema(max_length = 64)] pub profile_name: Option<String>, /// The URL to redirect after the completion of the operation #[schema(value_type = Option<String>, max_length = 255, example = "https://www.example.com/success")] pub return_url: Option<common_utils::types::Url>, /// A boolean value to indicate if payment response hash needs to be enabled #[schema(default = true, example = true)] pub enable_payment_response_hash: Option<bool>, /// Refers to the hash key used for calculating the signature for webhooks and redirect response. If the value is not provided, a value is automatically generated. pub payment_response_hash_key: Option<String>, /// A boolean value to indicate if redirect to merchant with http post needs to be enabled #[schema(default = false, example = true)] pub redirect_to_merchant_with_http_post: Option<bool>, /// Webhook related details pub webhook_details: Option<WebhookDetails>, /// Metadata is useful for storing additional, unstructured information on an object. #[schema(value_type = Option<Object>, example = r#"{ "city": "NY", "unit": "245" }"#)] pub metadata: Option<pii::SecretSerdeValue>, /// Will be used to determine the time till which your payment will be active once the payment session starts #[schema(value_type = Option<u32>, example = 900)] pub order_fulfillment_time: Option<OrderFulfillmentTime>, /// Whether the order fulfillment time is calculated from the origin or the time of creating the payment, or confirming the payment #[schema(value_type = Option<OrderFulfillmentTimeOrigin>, example = "create")] pub order_fulfillment_time_origin: Option<api_enums::OrderFulfillmentTimeOrigin>, /// Verified Apple Pay domains for a particular profile pub applepay_verified_domains: Option<Vec<String>>, /// Client Secret Default expiry for all payments created under this profile #[schema(example = 900)] pub session_expiry: Option<u32>, /// Default Payment Link config for all payment links created under this profile pub payment_link_config: Option<BusinessPaymentLinkConfig>, /// External 3DS authentication details pub authentication_connector_details: Option<AuthenticationConnectorDetails>, /// Merchant's config to support extended card info feature pub extended_card_info_config: Option<ExtendedCardInfoConfig>, // Whether to use the billing details passed when creating the intent as payment method billing pub use_billing_as_payment_method_billing: Option<bool>, /// A boolean value to indicate if customer shipping details needs to be collected from wallet /// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc) #[schema(default = false, example = false)] pub collect_shipping_details_from_wallet_connector_if_required: Option<bool>, /// A boolean value to indicate if customer billing details needs to be collected from wallet /// connector only if it is required field for connector (Eg. Apple Pay, Google Pay etc) #[schema(default = false, example = false)] pub collect_billing_details_from_wallet_connector_if_required: Option<bool>, /// A boolean value to indicate if customer shipping details needs to be collected from wallet /// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc) #[schema(default = false, example = false)] pub always_collect_shipping_details_from_wallet_connector: Option<bool>, /// A boolean value to indicate if customer billing details needs to be collected from wallet /// connector irrespective of connector required fields (Eg. Apple pay, Google pay etc) #[schema(default = false, example = false)] pub always_collect_billing_details_from_wallet_connector: Option<bool>, /// Indicates if the MIT (merchant initiated transaction) payments can be made connector /// agnostic, i.e., MITs may be processed through different connector than CIT (customer /// initiated transaction) based on the routing rules. /// If set to `false`, MIT will go through the same connector as the CIT. pub is_connector_agnostic_mit_enabled: Option<bool>, /// Default payout link config #[schema(value_type = Option<BusinessPayoutLinkConfig>)] pub payout_link_config: Option<BusinessPayoutLinkConfig>, /// These key-value pairs are sent as additional custom headers in the outgoing webhook request. It is recommended not to use more than four key-value pairs. #[schema(value_type = Option<Object>, example = r#"{ "key1": "value-1", "key2": "value-2" }"#)] pub outgoing_webhook_custom_http_headers: Option<HashMap<String, String>>, /// Merchant Connector id to be stored for tax_calculator connector #[schema(value_type = Option<String>)] pub tax_connector_id: Option<id_type::MerchantConnectorAccountId>, /// Indicates if tax_calculator connector is enabled or not. /// If set to `true` tax_connector_id will be checked. pub is_tax_connector_enabled: Option<bool>, /// Indicates if network tokenization is enabled or not. pub is_network_tokenization_enabled: Option<bool>, /// Indicates if click to pay is enabled or not. #[schema(default = false, example = false)] pub is_click_to_pay_enabled: Option<bool>, /// Product authentication ids #[schema(value_type = Option<Object>, example = r#"{ "click_to_pay": "mca_ushduqwhdohwd", "netcetera": "mca_kwqhudqwd" }"#)] pub authentication_product_ids: Option<common_types::payments::AuthenticationConnectorAccountMap>, /// Card Testing Guard Configs pub card_testing_guard_config: Option<CardTestingGuardConfig>, ///Indicates if clear pan retries is enabled or not. pub is_clear_pan_retries_enabled: Option<bool>, /// Indicates if debit routing is enabled or not #[schema(value_type = Option<bool>)] pub is_debit_routing_enabled: Option<bool>, //Merchant country for the profile #[schema(value_type = Option<CountryAlpha2>, example = "US")] pub merchant_business_country: Option<api_enums::CountryAlpha2>, /// Indicates if external vault is enabled or not. pub is_external_vault_enabled: Option<bool>, /// External Vault Connector Details pub external_vault_connector_details: Option<ExternalVaultConnectorDetails>, /// Four-digit code assigned based on business type to determine processing fees and risk level #[schema(value_type = Option<MerchantCategoryCode>, example = "5411")] pub merchant_category_code: Option<api_enums::MerchantCategoryCode>, /// Merchant country code. /// This is a 3-digit ISO 3166-1 numeric country code that represents the country in which the merchant is registered or operates. /// Merchants typically receive this value based on their business registration information or during onboarding via payment processors or acquiring banks. /// It is used in payment processing, fraud detection, and regulatory compliance to determine regional rules and routing behavior. #[schema(value_type = Option<MerchantCountryCode>, example = "840")] pub merchant_country_code: Option<common_types::payments::MerchantCountryCode>, /// Indicates the state of revenue recovery algorithm type #[schema(value_type = Option<RevenueRecoveryAlgorithmType>, example = "cascading")] pub revenue_recovery_retry_algorithm_type: Option<common_enums::enums::RevenueRecoveryAlgorithmType>, /// Enable split payments, i.e., split the amount between multiple payment methods #[schema(value_type = Option<SplitTxnsEnabled>, default = "skip")] pub split_txns_enabled: Option<common_enums::SplitTxnsEnabled>, /// Merchant Connector id to be stored for billing_processor connector #[schema(value_type = Option<String>)] pub billing_processor_id: Option<id_type::MerchantConnectorAccountId>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ProfileUpdate", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_9059023406594897456
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct BusinessCollectLinkConfig { #[serde(flatten)] pub config: BusinessGenericLinkConfig, /// List of payment methods shown on collect UI #[schema(value_type = Vec<EnabledPaymentMethod>, example = r#"[{"payment_method": "bank_transfer", "payment_method_types": ["ach", "bacs", "sepa"]}]"#)] pub enabled_payment_methods: Vec<link_utils::EnabledPaymentMethod>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "BusinessCollectLinkConfig", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-1508733569345141717
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct BusinessPayoutLinkConfig { #[serde(flatten)] pub config: BusinessGenericLinkConfig, /// Form layout of the payout link #[schema(value_type = Option<UIWidgetFormLayout>, max_length = 255, example = "tabs")] pub form_layout: Option<api_enums::UIWidgetFormLayout>, /// Allows for removing any validations / pre-requisites which are necessary in a production environment #[schema(value_type = Option<bool>, default = false)] pub payout_test_mode: Option<bool>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "BusinessPayoutLinkConfig", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-2011343335699216869
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct MaskedHeaders(HashMap<String, String>);
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "MaskedHeaders", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-1464794314152272376
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct BusinessGenericLinkConfig { /// Custom domain name to be used for hosting the link pub domain_name: Option<String>, /// A list of allowed domains (glob patterns) where this link can be embedded / opened from pub allowed_domains: HashSet<String>, #[serde(flatten)] #[schema(value_type = GenericLinkUiConfig)] pub ui_config: link_utils::GenericLinkUiConfig, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "BusinessGenericLinkConfig", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_8199775228349975754
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct BusinessPaymentLinkConfig { /// Custom domain name to be used for hosting the link in your own domain pub domain_name: Option<String>, /// Default payment link config for all future payment link #[serde(flatten)] #[schema(value_type = PaymentLinkConfigRequest)] pub default_config: Option<PaymentLinkConfigRequest>, /// list of configs for multi theme setup pub business_specific_configs: Option<HashMap<String, PaymentLinkConfigRequest>>, /// A list of allowed domains (glob patterns) where this link can be embedded / opened from #[schema(value_type = Option<HashSet<String>>)] pub allowed_domains: Option<HashSet<String>>, /// Toggle for HyperSwitch branding visibility pub branding_visibility: Option<bool>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "BusinessPaymentLinkConfig", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-289100434234498734
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct PaymentLinkConfigRequest { /// custom theme for the payment link #[schema(value_type = Option<String>, max_length = 255, example = "#4E6ADD")] pub theme: Option<String>, /// merchant display logo #[schema(value_type = Option<String>, max_length = 255, example = "https://i.pinimg.com/736x/4d/83/5c/4d835ca8aafbbb15f84d07d926fda473.jpg")] pub logo: Option<String>, /// Custom merchant name for payment link #[schema(value_type = Option<String>, max_length = 255, example = "hyperswitch")] pub seller_name: Option<String>, /// Custom layout for sdk #[schema(value_type = Option<String>, max_length = 255, example = "accordion")] pub sdk_layout: Option<String>, /// Display only the sdk for payment link #[schema(default = false, example = true)] pub display_sdk_only: Option<bool>, /// Enable saved payment method option for payment link #[schema(default = false, example = true)] pub enabled_saved_payment_method: Option<bool>, /// Hide card nickname field option for payment link #[schema(default = false, example = true)] pub hide_card_nickname_field: Option<bool>, /// Show card form by default for payment link #[schema(default = true, example = true)] pub show_card_form_by_default: Option<bool>, /// Dynamic details related to merchant to be rendered in payment link pub transaction_details: Option<Vec<PaymentLinkTransactionDetails>>, /// Configurations for the background image for details section pub background_image: Option<PaymentLinkBackgroundImageConfig>, /// Custom layout for details section #[schema(value_type = Option<PaymentLinkDetailsLayout>, example = "layout1")] pub details_layout: Option<api_enums::PaymentLinkDetailsLayout>, /// Text for payment link's handle confirm button pub payment_button_text: Option<String>, /// Text for customizing message for card terms pub custom_message_for_card_terms: Option<String>, /// Custom background colour for payment link's handle confirm button pub payment_button_colour: Option<String>, /// Skip the status screen after payment completion pub skip_status_screen: Option<bool>, /// Custom text colour for payment link's handle confirm button pub payment_button_text_colour: Option<String>, /// Custom background colour for the payment link pub background_colour: Option<String>, /// SDK configuration rules pub sdk_ui_rules: Option<HashMap<String, HashMap<String, String>>>, /// Payment link configuration rules pub payment_link_ui_rules: Option<HashMap<String, HashMap<String, String>>>, /// Flag to enable the button only when the payment form is ready for submission pub enable_button_only_on_form_ready: Option<bool>, /// Optional header for the SDK's payment form pub payment_form_header_text: Option<String>, /// Label type in the SDK's payment form #[schema(value_type = Option<PaymentLinkSdkLabelType>, example = "floating")] pub payment_form_label_type: Option<api_enums::PaymentLinkSdkLabelType>, /// Boolean for controlling whether or not to show the explicit consent for storing cards #[schema(value_type = Option<PaymentLinkShowSdkTerms>, example = "always")] pub show_card_terms: Option<api_enums::PaymentLinkShowSdkTerms>, /// Boolean to control payment button text for setup mandate calls pub is_setup_mandate_flow: Option<bool>, /// Hex color for the CVC icon during error state pub color_icon_card_cvc_error: Option<String>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "PaymentLinkConfigRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-3416530526165445448
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct PaymentLinkTransactionDetails { /// Key for the transaction details #[schema(value_type = String, max_length = 255, example = "Policy-Number")] pub key: String, /// Value for the transaction details #[schema(value_type = String, max_length = 255, example = "297472368473924")] pub value: String, /// UI configuration for the transaction details pub ui_configuration: Option<TransactionDetailsUiConfiguration>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "PaymentLinkTransactionDetails", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_5536730712423895455
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct TransactionDetailsUiConfiguration { /// Position of the key-value pair in the UI #[schema(value_type = Option<i8>, example = 5)] pub position: Option<i8>, /// Whether the key should be bold #[schema(default = false, example = true)] pub is_key_bold: Option<bool>, /// Whether the value should be bold #[schema(default = false, example = true)] pub is_value_bold: Option<bool>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "TransactionDetailsUiConfiguration", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-5431626957339479731
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct PaymentLinkBackgroundImageConfig { /// URL of the image #[schema(value_type = String, example = "https://hyperswitch.io/favicon.ico")] pub url: common_utils::types::Url, /// Position of the image in the UI #[schema(value_type = Option<ElementPosition>, example = "top-left")] pub position: Option<api_enums::ElementPosition>, /// Size of the image in the UI #[schema(value_type = Option<ElementSize>, example = "contain")] pub size: Option<api_enums::ElementSize>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "PaymentLinkBackgroundImageConfig", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-4751849237539991777
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct PaymentLinkConfig { /// custom theme for the payment link pub theme: String, /// merchant display logo pub logo: String, /// Custom merchant name for payment link pub seller_name: String, /// Custom layout for sdk pub sdk_layout: String, /// Display only the sdk for payment link pub display_sdk_only: bool, /// Enable saved payment method option for payment link pub enabled_saved_payment_method: bool, /// Hide card nickname field option for payment link pub hide_card_nickname_field: bool, /// Show card form by default for payment link pub show_card_form_by_default: bool, /// A list of allowed domains (glob patterns) where this link can be embedded / opened from pub allowed_domains: Option<HashSet<String>>, /// Dynamic details related to merchant to be rendered in payment link pub transaction_details: Option<Vec<PaymentLinkTransactionDetails>>, /// Configurations for the background image for details section pub background_image: Option<PaymentLinkBackgroundImageConfig>, /// Custom layout for details section #[schema(value_type = Option<PaymentLinkDetailsLayout>, example = "layout1")] pub details_layout: Option<api_enums::PaymentLinkDetailsLayout>, /// Toggle for HyperSwitch branding visibility pub branding_visibility: Option<bool>, /// Text for payment link's handle confirm button pub payment_button_text: Option<String>, /// Text for customizing message for card terms pub custom_message_for_card_terms: Option<String>, /// Custom background colour for payment link's handle confirm button pub payment_button_colour: Option<String>, /// Skip the status screen after payment completion pub skip_status_screen: Option<bool>, /// Custom text colour for payment link's handle confirm button pub payment_button_text_colour: Option<String>, /// Custom background colour for the payment link pub background_colour: Option<String>, /// SDK configuration rules pub sdk_ui_rules: Option<HashMap<String, HashMap<String, String>>>, /// Payment link configuration rules pub payment_link_ui_rules: Option<HashMap<String, HashMap<String, String>>>, /// Flag to enable the button only when the payment form is ready for submission pub enable_button_only_on_form_ready: bool, /// Optional header for the SDK's payment form pub payment_form_header_text: Option<String>, /// Label type in the SDK's payment form #[schema(value_type = Option<PaymentLinkSdkLabelType>, example = "floating")] pub payment_form_label_type: Option<api_enums::PaymentLinkSdkLabelType>, /// Boolean for controlling whether or not to show the explicit consent for storing cards #[schema(value_type = Option<PaymentLinkShowSdkTerms>, example = "always")] pub show_card_terms: Option<api_enums::PaymentLinkShowSdkTerms>, /// Boolean to control payment button text for setup mandate calls pub is_setup_mandate_flow: Option<bool>, /// Hex color for the CVC icon during error state pub color_icon_card_cvc_error: Option<String>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "PaymentLinkConfig", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-6964400597694768621
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct ExtendedCardInfoChoice { pub enabled: bool, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ExtendedCardInfoChoice", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-300913277294425493
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct ConnectorAgnosticMitChoice { pub enabled: bool, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ConnectorAgnosticMitChoice", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-3711463685406618276
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct ExtendedCardInfoConfig { /// Merchant public key #[schema(value_type = String)] pub public_key: Secret<String>, /// TTL for extended card info #[schema(default = 900, maximum = 7200, value_type = u16)] #[serde(default)] pub ttl_in_secs: TtlForExtendedCardInfo, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ExtendedCardInfoConfig", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-6638138092621857084
clm
struct
// hyperswitch/crates/api_models/src/admin.rs pub struct TtlForExtendedCardInfo(u16);
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "TtlForExtendedCardInfo", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_2751249673772717841
clm
struct
// hyperswitch/crates/api_models/src/connector_onboarding.rs pub struct ActionUrlRequest { pub connector: enums::Connector, pub connector_id: id_type::MerchantConnectorAccountId, pub return_url: String, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ActionUrlRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_2274545702885593996
clm
struct
// hyperswitch/crates/api_models/src/connector_onboarding.rs pub struct OnboardingSyncRequest { pub profile_id: id_type::ProfileId, pub connector_id: id_type::MerchantConnectorAccountId, pub connector: enums::Connector, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "OnboardingSyncRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_8884097187230712826
clm
struct
// hyperswitch/crates/api_models/src/connector_onboarding.rs pub struct PayPalActionUrlResponse { pub action_url: String, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "PayPalActionUrlResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_2775698573227386221
clm
struct
// hyperswitch/crates/api_models/src/connector_onboarding.rs pub struct PayPalOnboardingDone { pub payer_id: id_type::MerchantId, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "PayPalOnboardingDone", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-6844721297256986288
clm
struct
// hyperswitch/crates/api_models/src/connector_onboarding.rs pub struct PayPalIntegrationDone { pub connector_id: String, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "PayPalIntegrationDone", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-1571225385250706785
clm
struct
// hyperswitch/crates/api_models/src/connector_onboarding.rs pub struct ResetTrackingIdRequest { pub connector_id: id_type::MerchantConnectorAccountId, pub connector: enums::Connector, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ResetTrackingIdRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_2497607619189226471
clm
struct
// hyperswitch/crates/api_models/src/chat.rs pub struct ChatRequest { pub message: Secret<String>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ChatRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-9153878575090304706
clm
struct
// hyperswitch/crates/api_models/src/chat.rs pub struct ChatResponse { pub response: Secret<serde_json::Value>, pub merchant_id: id_type::MerchantId, pub status: String, #[serde(skip_serializing)] pub query_executed: Option<Secret<String>>, #[serde(skip_serializing)] pub row_count: Option<i32>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ChatResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-6356850327038140276
clm
struct
// hyperswitch/crates/api_models/src/chat.rs pub struct ChatListRequest { pub merchant_id: Option<id_type::MerchantId>, pub limit: Option<i64>, pub offset: Option<i64>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ChatListRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-7797859182894449207
clm
struct
// hyperswitch/crates/api_models/src/chat.rs pub struct ChatConversation { pub id: String, pub session_id: Option<String>, pub user_id: Option<String>, pub merchant_id: Option<String>, pub profile_id: Option<String>, pub org_id: Option<String>, pub role_id: Option<String>, pub user_query: Secret<String>, pub response: Secret<serde_json::Value>, pub database_query: Option<String>, pub interaction_status: Option<String>, #[serde(with = "common_utils::custom_serde::iso8601")] pub created_at: PrimitiveDateTime, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ChatConversation", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-6358264774713889934
clm
struct
// hyperswitch/crates/api_models/src/chat.rs pub struct ChatListResponse { pub conversations: Vec<ChatConversation>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ChatListResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-5424436876979335701
clm
struct
// hyperswitch/crates/api_models/src/pm_auth.rs pub struct LinkTokenCreateRequest { pub language: Option<String>, // optional language field to be passed pub client_secret: Option<String>, // client secret to be passed in req body pub payment_id: id_type::PaymentId, // payment_id to be passed in req body for redis pm_auth connector name fetch pub payment_method: PaymentMethod, // payment_method to be used for filtering pm_auth connector pub payment_method_type: PaymentMethodType, // payment_method_type to be used for filtering pm_auth connector }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "LinkTokenCreateRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_4018893615950391513
clm
struct
// hyperswitch/crates/api_models/src/pm_auth.rs pub struct LinkTokenCreateResponse { pub link_token: String, // link_token received in response pub connector: String, // pm_auth connector name in response }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "LinkTokenCreateResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-2612619455611378474
clm
struct
// hyperswitch/crates/api_models/src/pm_auth.rs pub struct ExchangeTokenCreateRequest { pub public_token: String, pub client_secret: Option<String>, pub payment_id: id_type::PaymentId, pub payment_method: PaymentMethod, pub payment_method_type: PaymentMethodType, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ExchangeTokenCreateRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-961424394524355610
clm
struct
// hyperswitch/crates/api_models/src/pm_auth.rs pub struct ExchangeTokenCreateResponse { pub access_token: String, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ExchangeTokenCreateResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-7104157039684417341
clm
struct
// hyperswitch/crates/api_models/src/pm_auth.rs pub struct PaymentMethodAuthConfig { pub enabled_payment_methods: Vec<PaymentMethodAuthConnectorChoice>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "PaymentMethodAuthConfig", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-1868774511502066078
clm
struct
// hyperswitch/crates/api_models/src/pm_auth.rs pub struct PaymentMethodAuthConnectorChoice { pub payment_method: PaymentMethod, pub payment_method_type: PaymentMethodType, pub connector_name: String, pub mca_id: id_type::MerchantConnectorAccountId, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "PaymentMethodAuthConnectorChoice", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_3468217322887161489
clm
struct
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub struct AchBankDebitAdditionalData { /// Partially masked account number for ach bank debit payment #[schema(value_type = String, example = "0001****3456")] pub account_number: MaskedBankAccount, /// Partially masked routing number for ach bank debit payment #[schema(value_type = String, example = "110***000")] pub routing_number: MaskedRoutingNumber, /// Card holder's name #[schema(value_type = Option<String>, example = "John Doe")] pub card_holder_name: Option<Secret<String>>, /// Bank account's owner name #[schema(value_type = Option<String>, example = "John Doe")] pub bank_account_holder_name: Option<Secret<String>>, /// Name of the bank #[schema(value_type = Option<BankNames>, example = "ach")] pub bank_name: Option<common_enums::BankNames>, /// Bank account type #[schema(value_type = Option<BankType>, example = "checking")] pub bank_type: Option<common_enums::BankType>, /// Bank holder entity type #[schema(value_type = Option<BankHolderType>, example = "personal")] pub bank_holder_type: Option<common_enums::BankHolderType>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "AchBankDebitAdditionalData", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_6837316895514223645
clm
struct
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub struct BacsBankDebitAdditionalData { /// Partially masked account number for Bacs payment method #[schema(value_type = String, example = "0001****3456")] pub account_number: MaskedBankAccount, /// Partially masked sort code for Bacs payment method #[schema(value_type = String, example = "108800")] pub sort_code: MaskedSortCode, /// Bank account's owner name #[schema(value_type = Option<String>, example = "John Doe")] pub bank_account_holder_name: Option<Secret<String>>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "BacsBankDebitAdditionalData", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-3871675707678282920
clm
struct
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub struct BecsBankDebitAdditionalData { /// Partially masked account number for Becs payment method #[schema(value_type = String, example = "0001****3456")] pub account_number: MaskedBankAccount, /// Bank-State-Branch (bsb) number #[schema(value_type = String, example = "000000")] pub bsb_number: Secret<String>, /// Bank account's owner name #[schema(value_type = Option<String>, example = "John Doe")] pub bank_account_holder_name: Option<Secret<String>>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "BecsBankDebitAdditionalData", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-8534927190132997926
clm
struct
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub struct SepaBankDebitAdditionalData { /// Partially masked international bank account number (iban) for SEPA #[schema(value_type = String, example = "DE8937******013000")] pub iban: MaskedIban, /// Bank account's owner name #[schema(value_type = Option<String>, example = "John Doe")] pub bank_account_holder_name: Option<Secret<String>>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "SepaBankDebitAdditionalData", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-6471271710117145087
clm
struct
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub struct BancontactBankRedirectAdditionalData { /// Last 4 digits of the card number #[schema(value_type = Option<String>, example = "4242")] pub last4: Option<String>, /// The card's expiry month #[schema(value_type = Option<String>, example = "12")] pub card_exp_month: Option<Secret<String>>, /// The card's expiry year #[schema(value_type = Option<String>, example = "24")] pub card_exp_year: Option<Secret<String>>, /// The card holder's name #[schema(value_type = Option<String>, example = "John Test")] pub card_holder_name: Option<Secret<String>>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "BancontactBankRedirectAdditionalData", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_5416941741132664602
clm
struct
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub struct BlikBankRedirectAdditionalData { #[schema(value_type = Option<String>, example = "3GD9MO")] pub blik_code: Option<String>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "BlikBankRedirectAdditionalData", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_401328464839530012
clm
struct
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub struct GiropayBankRedirectAdditionalData { #[schema(value_type = Option<String>)] /// Masked bank account bic code pub bic: Option<MaskedSortCode>, /// Partially masked international bank account number (iban) for SEPA #[schema(value_type = Option<String>)] pub iban: Option<MaskedIban>, /// Country for bank payment #[schema(value_type = Option<CountryAlpha2>, example = "US")] pub country: Option<api_enums::CountryAlpha2>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "GiropayBankRedirectAdditionalData", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-6608143349827663576
clm
struct
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub struct PixBankTransferAdditionalData { /// Partially masked unique key for pix transfer #[schema(value_type = Option<String>, example = "a1f4102e ****** 6fa48899c1d1")] pub pix_key: Option<MaskedBankAccount>, /// Partially masked CPF - CPF is a Brazilian tax identification number #[schema(value_type = Option<String>, example = "**** 124689")] pub cpf: Option<MaskedBankAccount>, /// Partially masked CNPJ - CNPJ is a Brazilian company tax identification number #[schema(value_type = Option<String>, example = "**** 417312")] pub cnpj: Option<MaskedBankAccount>, /// Partially masked source bank account number #[schema(value_type = Option<String>, example = "********-****-4073-****-9fa964d08bc5")] pub source_bank_account_id: Option<MaskedBankAccount>, /// Partially masked destination bank account number _Deprecated: Will be removed in next stable release._ #[schema(value_type = Option<String>, example = "********-****-460b-****-f23b4e71c97b", deprecated)] pub destination_bank_account_id: Option<MaskedBankAccount>, /// The expiration date and time for the Pix QR code in ISO 8601 format #[schema(value_type = Option<String>, example = "2025-09-10T10:11:12Z")] #[serde(default, with = "common_utils::custom_serde::iso8601::option")] pub expiry_date: Option<time::PrimitiveDateTime>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "PixBankTransferAdditionalData", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-1822395970590729132
clm
struct
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub struct LocalBankTransferAdditionalData { /// Partially masked bank code #[schema(value_type = Option<String>, example = "**** OA2312")] pub bank_code: Option<MaskedBankAccount>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "LocalBankTransferAdditionalData", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_1507166095151313816
clm
struct
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub struct GivexGiftCardAdditionalData { /// Last 4 digits of the gift card number #[schema(value_type = String, example = "4242")] pub last4: Secret<String>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "GivexGiftCardAdditionalData", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_2915924953528644423
clm
struct
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub struct CardTokenAdditionalData { /// The card holder's name #[schema(value_type = String, example = "John Test")] pub card_holder_name: Option<Secret<String>>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "CardTokenAdditionalData", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_6794720375315100036
clm
struct
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub struct UpiCollectAdditionalData { /// Masked VPA ID #[schema(value_type = Option<String>, example = "ab********@okhdfcbank")] pub vpa_id: Option<MaskedUpiVpaId>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "UpiCollectAdditionalData", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_7978678132352663322
clm
struct
// hyperswitch/crates/api_models/src/payments/additional_info.rs pub struct WalletAdditionalDataForCard { /// Last 4 digits of the card number pub last4: String, /// The information of the payment method pub card_network: String, /// The type of payment method #[serde(rename = "type")] pub card_type: Option<String>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "WalletAdditionalDataForCard", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_2296024222647725995
clm
struct
// hyperswitch/crates/api_models/src/process_tracker/revenue_recovery.rs pub struct RevenueRecoveryResponse { pub id: String, pub name: Option<String>, #[schema(example = "2022-09-10T10:11:12Z")] #[serde(default, with = "common_utils::custom_serde::iso8601::option")] pub schedule_time_for_payment: Option<PrimitiveDateTime>, #[schema(example = "2022-09-10T10:11:12Z")] #[serde(default, with = "common_utils::custom_serde::iso8601::option")] pub schedule_time_for_psync: Option<PrimitiveDateTime>, #[schema(value_type = ProcessTrackerStatus, example = "finish")] pub status: enums::ProcessTrackerStatus, pub business_status: String, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "RevenueRecoveryResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_5671945351702123363
clm
struct
// hyperswitch/crates/api_models/src/process_tracker/revenue_recovery.rs pub struct RevenueRecoveryId { pub revenue_recovery_id: id_type::GlobalPaymentId, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "RevenueRecoveryId", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_3844799436476913305
clm
struct
// hyperswitch/crates/api_models/src/process_tracker/revenue_recovery.rs pub struct RevenueRecoveryRetriggerRequest { /// The task we want to resume pub revenue_recovery_task: String, /// Time at which the job was scheduled at #[schema(example = "2022-09-10T10:11:12Z")] #[serde(default, with = "common_utils::custom_serde::iso8601::option")] pub schedule_time: Option<PrimitiveDateTime>, /// Status of The Process Tracker Task pub status: enums::ProcessTrackerStatus, /// Business Status of The Process Tracker Task pub business_status: String, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "RevenueRecoveryRetriggerRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_5104233276656428452
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct CreateRoleRequest { pub role_name: String, pub groups: Vec<PermissionGroup>, pub role_scope: RoleScope, pub entity_type: Option<EntityType>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "CreateRoleRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-7702254202560832496
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct CreateRoleV2Request { pub role_name: String, pub role_scope: RoleScope, pub entity_type: Option<EntityType>, pub parent_groups: Vec<ParentGroupInfoRequest>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "CreateRoleV2Request", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-4582939268040518831
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct UpdateRoleRequest { pub groups: Option<Vec<PermissionGroup>>, pub role_name: Option<String>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "UpdateRoleRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-6136092310867395385
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct RoleInfoWithGroupsResponse { pub role_id: String, pub groups: Vec<PermissionGroup>, pub role_name: String, pub role_scope: RoleScope, pub entity_type: EntityType, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "RoleInfoWithGroupsResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_469558735986130484
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct RoleInfoWithParents { pub role_id: String, pub parent_groups: Vec<ParentGroupDescription>, pub role_name: String, pub role_scope: RoleScope, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "RoleInfoWithParents", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_9144363764470375350
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct ParentGroupDescription { pub name: ParentGroup, pub description: String, pub scopes: Vec<PermissionScope>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ParentGroupDescription", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-1508833709936482427
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct ParentGroupInfoRequest { pub name: ParentGroup, pub scopes: Vec<PermissionScope>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ParentGroupInfoRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_7835599363551391049
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct ListRolesQueryParams { pub entity_type: Option<EntityType>, pub groups: Option<bool>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ListRolesQueryParams", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_1123400050862309970
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct RoleInfoResponseNew { pub role_id: String, pub role_name: String, pub entity_type: EntityType, pub groups: Vec<PermissionGroup>, pub scope: RoleScope, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "RoleInfoResponseNew", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_8565919435246200422
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct RoleInfoResponseWithParentsGroup { pub role_id: String, pub role_name: String, pub entity_type: EntityType, pub parent_groups: Vec<ParentGroupDescription>, pub role_scope: RoleScope, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "RoleInfoResponseWithParentsGroup", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-4343956238376170970
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct GetRoleRequest { pub role_id: String, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "GetRoleRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-5723714490792158751
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct ListRolesAtEntityLevelRequest { pub entity_type: EntityType, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ListRolesAtEntityLevelRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_5967729309444297868
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct GetParentGroupsInfoQueryParams { pub entity_type: Option<EntityType>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "GetParentGroupsInfoQueryParams", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-3460968157657957418
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct MinimalRoleInfo { pub role_id: String, pub role_name: String, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "MinimalRoleInfo", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_544172673044496592
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct GroupsAndResources { pub groups: Vec<PermissionGroup>, pub resources: Vec<Resource>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "GroupsAndResources", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-7256753554817905964
clm
struct
// hyperswitch/crates/api_models/src/user_role/role.rs pub struct ParentGroupInfo { pub name: ParentGroup, pub resources: Vec<Resource>, pub scopes: Vec<PermissionScope>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ParentGroupInfo", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_6890415856368812059
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs pub struct GetThemeResponse { pub theme_id: String, pub theme_name: String, pub entity_type: EntityType, pub tenant_id: id_type::TenantId, pub org_id: Option<id_type::OrganizationId>, pub merchant_id: Option<id_type::MerchantId>, pub profile_id: Option<id_type::ProfileId>, pub email_config: EmailThemeConfig, pub theme_data: ThemeData, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "GetThemeResponse", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-6430740577784738069
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs pub struct UploadFileAssetData { pub asset_name: Text<String>, #[multipart(limit = "10MB")] pub asset_data: Bytes, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "UploadFileAssetData", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_2339502992783848409
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs pub struct UploadFileRequest { pub asset_name: String, pub asset_data: Secret<Vec<u8>>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "UploadFileRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-7954191132320094749
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs pub struct CreateThemeRequest { pub lineage: ThemeLineage, pub theme_name: String, pub theme_data: ThemeData, pub email_config: Option<EmailThemeConfig>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "CreateThemeRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_4964085535882713687
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs pub struct CreateUserThemeRequest { pub entity_type: EntityType, pub theme_name: String, pub theme_data: ThemeData, pub email_config: Option<EmailThemeConfig>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "CreateUserThemeRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-8491993147893257225
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs pub struct UpdateThemeRequest { pub theme_data: Option<ThemeData>, pub email_config: Option<EmailThemeConfig>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "UpdateThemeRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_1836228213687910784
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs pub struct ThemeData { settings: Settings, urls: Option<Urls>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ThemeData", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-2468058615606694091
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs struct Settings { colors: Colors, sidebar: Option<Sidebar>, typography: Option<Typography>, buttons: Buttons, borders: Option<Borders>, spacing: Option<Spacing>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "Settings", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_867520368207142317
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs struct Colors { primary: String, secondary: Option<String>, background: Option<String>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "Colors", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_8493951814580442869
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs struct Sidebar { primary: String, text_color: Option<String>, text_color_primary: Option<String>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "Sidebar", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_5186532711832046207
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs struct Typography { font_family: Option<String>, font_size: Option<String>, heading_font_size: Option<String>, text_color: Option<String>, link_color: Option<String>, link_hover_color: Option<String>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "Typography", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_4428513566793293172
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs struct Buttons { primary: PrimaryButton, secondary: Option<SecondaryButton>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "Buttons", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-5894346985110315048
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs struct PrimaryButton { background_color: Option<String>, text_color: Option<String>, hover_background_color: String, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "PrimaryButton", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_9205989813189099264
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs struct SecondaryButton { background_color: Option<String>, text_color: Option<String>, hover_background_color: Option<String>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "SecondaryButton", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_1194037797873468754
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs struct Borders { default_radius: Option<String>, border_color: Option<String>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "Borders", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_5199328268059951862
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs struct Spacing { padding: Option<String>, margin: Option<String>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "Spacing", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-3839577133662254079
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs struct Urls { favicon_url: Option<String>, logo_url: Option<String>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "Urls", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_4423155015065688970
clm
struct
// hyperswitch/crates/api_models/src/user/theme.rs pub struct EntityTypeQueryParam { pub entity_type: EntityType, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "EntityTypeQueryParam", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_1697023019950130013
clm
struct
// hyperswitch/crates/api_models/src/user/dashboard_metadata.rs pub struct ProductionAgreementRequest { pub version: String, #[serde(skip_deserializing)] pub ip_address: Option<Secret<String, pii::IpAddress>>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ProductionAgreementRequest", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_8117955679978625059
clm
struct
// hyperswitch/crates/api_models/src/user/dashboard_metadata.rs pub struct SetupProcessor { pub connector_id: String, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "SetupProcessor", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_1753122788328963678
clm
struct
// hyperswitch/crates/api_models/src/user/dashboard_metadata.rs pub struct ProcessorConnected { pub processor_id: id_type::MerchantConnectorAccountId, pub processor_name: String, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ProcessorConnected", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-5862460701317351592
clm
struct
// hyperswitch/crates/api_models/src/user/dashboard_metadata.rs pub struct OnboardingSurvey { pub designation: Option<SafeString>, pub about_business: Option<SafeString>, pub business_website: Option<SafeString>, pub hyperswitch_req: Option<SafeString>, pub major_markets: Option<Vec<SafeString>>, pub business_size: Option<SafeString>, pub required_features: Option<Vec<SafeString>>, pub required_processors: Option<Vec<SafeString>>, pub planned_live_date: Option<SafeString>, pub miscellaneous: Option<SafeString>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "OnboardingSurvey", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-2149831598294339907
clm
struct
// hyperswitch/crates/api_models/src/user/dashboard_metadata.rs pub struct ConfiguredRouting { pub routing_id: String, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ConfiguredRouting", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-5691464956052553176
clm
struct
// hyperswitch/crates/api_models/src/user/dashboard_metadata.rs pub struct TestPayment { pub payment_id: id_type::PaymentId, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "TestPayment", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_6088324411699718598
clm
struct
// hyperswitch/crates/api_models/src/user/dashboard_metadata.rs pub struct IntegrationMethod { pub integration_type: String, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "IntegrationMethod", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-2005935735506816848
clm
struct
// hyperswitch/crates/api_models/src/user/dashboard_metadata.rs pub struct Feedback { pub email: pii::Email, pub description: Option<SafeString>, pub rating: Option<i32>, pub category: Option<SafeString>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "Feedback", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-6004651258662430257
clm
struct
// hyperswitch/crates/api_models/src/user/dashboard_metadata.rs pub struct ProdIntent { pub legal_business_name: Option<SafeString>, pub business_label: Option<SafeString>, pub business_location: Option<CountryAlpha2>, pub display_name: Option<SafeString>, pub poc_email: Option<pii::Email>, pub business_type: Option<SafeString>, pub business_identifier: Option<SafeString>, pub business_website: Option<SafeString>, pub poc_name: Option<Secret<SafeString>>, pub poc_contact: Option<Secret<SafeString>>, pub comments: Option<SafeString>, pub is_completed: bool, #[serde(default)] pub product_type: MerchantProductType, pub business_country_name: Option<SafeString>, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ProdIntent", "total_crates": null, "trait_name": null }
hyperswitch_struct_api_models_-2984155236230787031
clm
struct
// hyperswitch/crates/api_models/src/user/dashboard_metadata.rs pub struct ReconStatus { pub is_order_data_set: bool, pub is_processor_data_set: bool, }
{ "chunk": null, "crate": "api_models", "enum_name": null, "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": "ReconStatus", "total_crates": null, "trait_name": null }