mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 09:38:33 +08:00
feat(payment_methods_v2): Delete payment method api (#6211)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -149,6 +149,26 @@ pub const VAULT_FINGERPRINT_REQUEST_URL: &str = "/fingerprint";
|
||||
#[cfg(all(feature = "v2", feature = "payment_methods_v2"))]
|
||||
pub const VAULT_RETRIEVE_REQUEST_URL: &str = "/vault/retrieve";
|
||||
|
||||
/// Vault Delete request url
|
||||
#[cfg(all(feature = "v2", feature = "payment_methods_v2"))]
|
||||
pub const VAULT_DELETE_REQUEST_URL: &str = "/vault/delete";
|
||||
|
||||
/// Vault Header content type
|
||||
#[cfg(all(feature = "v2", feature = "payment_methods_v2"))]
|
||||
pub const VAULT_HEADER_CONTENT_TYPE: &str = "application/json";
|
||||
|
||||
/// Vault Add flow type
|
||||
#[cfg(all(feature = "v2", feature = "payment_methods_v2"))]
|
||||
pub const VAULT_ADD_FLOW_TYPE: &str = "add_to_vault";
|
||||
|
||||
/// Vault Retrieve flow type
|
||||
#[cfg(all(feature = "v2", feature = "payment_methods_v2"))]
|
||||
pub const VAULT_RETRIEVE_FLOW_TYPE: &str = "retrieve_from_vault";
|
||||
|
||||
/// Vault Delete flow type
|
||||
#[cfg(all(feature = "v2", feature = "payment_methods_v2"))]
|
||||
pub const VAULT_DELETE_FLOW_TYPE: &str = "delete_from_vault";
|
||||
|
||||
/// Vault Fingerprint fetch flow type
|
||||
#[cfg(all(feature = "v2", feature = "payment_methods_v2"))]
|
||||
pub const VAULT_GET_FINGERPRINT_FLOW_TYPE: &str = "get_fingerprint_vault";
|
||||
|
||||
Reference in New Issue
Block a user