From 2336f590b07752f4f1c619e4d24f371e47c4ca02 Mon Sep 17 00:00:00 2001 From: dulaj Date: Tue, 31 Oct 2023 11:21:15 +0530 Subject: [PATCH] Remove `fee` in ReservationResponse --- .../integration-tutorials/transforming-message-formats.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/swan-lake/integration-tutorials/transforming-message-formats.md b/swan-lake/integration-tutorials/transforming-message-formats.md index af946619b1b..b11d2dc0f30 100644 --- a/swan-lake/integration-tutorials/transforming-message-formats.md +++ b/swan-lake/integration-tutorials/transforming-message-formats.md @@ -74,7 +74,6 @@ The flow is as follows "phone": "8770586755", "email": "johndoe@gmail.com" }, - "fee": 7000.0, "hospital": "grand oak community hospital", "confirmed": false, "appointmentDate": "2017-04-02" @@ -172,14 +171,13 @@ Follow the instructions given in this section to develop the service. string hospital; string category; string availability; - float fee; + decimal fee; |}; type ReservationResponse record {| int appointmentNumber; Doctor doctor; Patient patient; - float fee; string hospital; boolean confirmed; string appointmentDate; @@ -321,14 +319,13 @@ type Doctor record {| string hospital; string category; string availability; - float fee; + decimal fee; |}; type ReservationResponse record {| int appointmentNumber; Doctor doctor; Patient patient; - float fee; string hospital; boolean confirmed; string appointmentDate; @@ -457,7 +454,6 @@ You will see a response similar to the following for a successful appointment re "phone": "8770586755", "email": "johndoe@gmail.com" }, - "fee": 7000.0, "hospital": "grand oak community hospital", "confirmed": false, "appointmentDate": "2017-04-02"