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
* Executes the HTTP request specified by the given RequestInformation and returns the deserialized enum response model.
89
+
*
90
+
* @template EnumObject - The type of the enum object. Must extend Record<string, unknown>.
91
+
* @param {RequestInformation} requestInfo - The request info to execute.
92
+
* @param {EnumObject} enumObject - The Enum object expected in the response.
93
+
* @param {ErrorMappings | undefined} errorMappings - the error factories mapping to use in case of a failed request.
94
+
* @returns {Promise<EnumObject[keyof EnumObject] | undefined>} - A promise that resolves to the response of the request, or undefined if an error occurred.
0 commit comments