We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7f32114 + 0226aa0 commit 0c3e8cdCopy full SHA for 0c3e8cd
.gitignore
@@ -2,6 +2,7 @@
2
specs/node_modules
3
4
# Ignore temporary Excel files
5
+~$*
6
*/~$*
7
8
# Ignore credentials (don't check in sensitive data)
src/WebRequest.cls
@@ -675,11 +675,11 @@ End Sub
675
' ```
676
'
677
' @method AddBodyParameter
678
-' @param {String} Key
+' @param {Variant} Key
679
' @param {Variant} Value
680
' @throws 11020 / 80042b0c / -2147210484 - Cannot add body parameter to non-Dictionary
681
''
682
-Public Sub AddBodyParameter(Key As String, Value As Variant)
+Public Sub AddBodyParameter(Key As Variant, Value As Variant)
683
If VBA.IsEmpty(web_pBody) Then
684
Set web_pBody = New Dictionary
685
ElseIf Not TypeOf web_pBody Is Dictionary Then
0 commit comments