You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: force-app/main/04_architecturalPatterns/externalAPIIntegration/aiAuthoringBundles/ExternalAPIIntegration/ExternalAPIIntegration.agent
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -14,15 +14,15 @@ variables:
14
14
# API request tracking
15
15
api_request_id: mutable string = ""
16
16
description: "The ID of the current API request."
17
-
api_response_status: mutable string = ""
17
+
api_response_status: mutable boolean = False
18
18
description: "The status of the API response (e.g., true for success, false for failure)."
19
19
api_error_message: mutable string = ""
20
20
description: "Error message returned by the API, if any."
21
21
22
22
# Weather API example
23
-
temperature: mutable string = ""
23
+
temperature: mutable number = 0
24
24
description: "The current temperature fetched from the weather API."
25
-
humidity: mutable string = ""
25
+
humidity: mutable number = 0
26
26
description: "The current humidity percentage fetched from the weather API."
27
27
conditions: mutable string = ""
28
28
description: "The current weather conditions (e.g., Sunny, Cloudy)."
0 commit comments