From 56123c35bc9c22525acc825115b54a95da444bbd Mon Sep 17 00:00:00 2001 From: chikke srujan <121822803+srujanchikke@users.noreply.github.com> Date: Tue, 5 Dec 2023 17:36:40 +0530 Subject: [PATCH] resolve comments --- add_connector.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/add_connector.md b/add_connector.md index 68ea464223e1..b6c8b2f71687 100644 --- a/add_connector.md +++ b/add_connector.md @@ -133,7 +133,7 @@ pub struct PaymentsRequest { Since Router is connector agnostic, only minimal data is sent to connector and optional fields may be ignored. Here processing_channel_id, is specific to checkout and implementations of such functions should be inside the checkout directory. -Let's define `Source` +Let's define `PaymentSource` `PaymentSource` is an enum type. Request types will need to derive `Serialize` and response types will need to derive `Deserialize`. For request types `From` needs to be implemented.