Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync integration-tutorials with master #8148

Merged
merged 2 commits into from
Oct 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ The flow is as follows
"phone": "8770586755",
"email": "[email protected]"
},
"fee": 7000.0,
"hospital": "grand oak community hospital",
"confirmed": false,
"appointmentDate": "2017-04-02"
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -457,7 +454,6 @@ You will see a response similar to the following for a successful appointment re
"phone": "8770586755",
"email": "[email protected]"
},
"fee": 7000.0,
"hospital": "grand oak community hospital",
"confirmed": false,
"appointmentDate": "2017-04-02"
Expand Down