Response Wrapper
LMResponse<T>
caters the base response for all the APIs. Each data function has its own response model which are wrapped inside LMResponse<T>
.
note
All the response
variables throughout the documentation are of type LMResponse<T>
.
The following table shows the structure of the wrapper LMResponse<T>
.
VARIABLE | TYPE | DESCRIPTION | OPTIONAL |
---|---|---|---|
success | Boolean | true if the API call was successful, false otherwise. | |
errorMessage | String | Error message in case the API fails. | ✔ |
data | T | Generic variable that holds the data received in API response. | ✔ |