This repository has been archived by the owner on Aug 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
api web
Ayhan Rashidov edited this page Aug 3, 2021
·
7 revisions
Represents the web api namespace which is related to the $.request
and $.response
APIs.
- SAP Help
https://help.sap.com/doc/3de842783af24336b6305a3c0223a369/2.0.03/en-US/$.web.html
- Module
https://github.com/SAP/xsk/tree/main/modules/api/api-xsjs/src/main/resources/xsk/web
- Coverage
Body
Methods | Description | Status |
---|---|---|
asArrayBuffer() | Returns the content of an HTTP request entity body as ArrayBuffer. | ✅ |
asString() | Returns the content of an HTTP request entity body as a string. | ✅ |
asWebResponse() | Returns the content of an HTTP request entity body as WebRequest. | ❌ |
EntityList
Members | Description | Status |
---|---|---|
length | The size of the entity list | ✅ |
Methods | Description | Status |
---|---|---|
create() | Create a new entity. | ✅ |
TupelList
Members | Description | Status |
---|---|---|
length | The size of the tupelo list | ✅ |
Methods | Description | Status |
---|---|---|
get(name) | Returns the values for a given name. | ✅ |
remove(name) | Removes the value for a given name. | ✅ |
set(name, value) | Sets the value for a given name. | ✅ |
WebEntityRequest
WebEntityResponse
WebRequest
WebResponse
- Issues