Interface: CSRFTokenResult
Defined in: src/modules/odata.ts:71
Result of a CSRF token fetch operation.
Example​
const result: CSRFTokenResult = {
token: 'abc123',
serviceUrl: '/sap/opu/odata/sap/API_PRODUCT_SRV/',
};
Properties​
serviceUrl​
readonlyserviceUrl:string
Defined in: src/modules/odata.ts:75
The OData service URL from which the token was fetched.
token​
readonlytoken:string
Defined in: src/modules/odata.ts:73
The fetched CSRF token value.