feat(connector): [Itau Bank] Add payment and sync flow for Pix (#5342)

This commit is contained in:
Sakil Mostak
2024-07-22 16:07:22 +05:30
committed by GitHub
parent ca749b3259
commit 3fef96e727
41 changed files with 768 additions and 144 deletions

View File

@ -47,6 +47,7 @@ static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
/// Header Constants
pub mod headers {
pub const ACCEPT: &str = "Accept";
pub const ACCEPT_LANGUAGE: &str = "Accept-Language";
pub const KEY: &str = "key";
pub const API_KEY: &str = "API-KEY";
pub const APIKEY: &str = "apikey";
@ -59,6 +60,7 @@ pub mod headers {
pub const NONCE: &str = "nonce";
pub const TIMESTAMP: &str = "Timestamp";
pub const TOKEN: &str = "token";
pub const USER_AGENT: &str = "User-Agent";
pub const X_API_KEY: &str = "X-API-KEY";
pub const X_API_VERSION: &str = "X-ApiVersion";
pub const X_FORWARDED_FOR: &str = "X-Forwarded-For";