feat: ACH transfers (#905)

This commit is contained in:
Sangamesh Kulkarni
2023-05-19 15:14:29 +05:30
committed by GitHub
parent 39405bb478
commit 23bca66b81
39 changed files with 1247 additions and 66 deletions

View File

@ -103,6 +103,7 @@ pub async fn construct_refund_router_data<'a, F>(
reference_id: None,
payment_method_token: None,
connector_customer: None,
preprocessing_id: None,
};
Ok(router_data)
@ -287,6 +288,7 @@ pub async fn construct_accept_dispute_router_data<'a>(
payment_method_token: None,
connector_customer: None,
customer_id: None,
preprocessing_id: None,
};
Ok(router_data)
}
@ -345,6 +347,7 @@ pub async fn construct_submit_evidence_router_data<'a>(
payment_method_token: None,
connector_customer: None,
customer_id: None,
preprocessing_id: None,
};
Ok(router_data)
}
@ -404,6 +407,7 @@ pub async fn construct_upload_file_router_data<'a>(
payment_method_token: None,
connector_customer: None,
customer_id: None,
preprocessing_id: None,
};
Ok(router_data)
}
@ -465,6 +469,7 @@ pub async fn construct_defend_dispute_router_data<'a>(
payment_method_token: None,
customer_id: None,
connector_customer: None,
preprocessing_id: None,
};
Ok(router_data)
}
@ -524,6 +529,7 @@ pub async fn construct_retrieve_file_router_data<'a>(
session_token: None,
reference_id: None,
payment_method_token: None,
preprocessing_id: None,
};
Ok(router_data)
}