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
This section will describe the structure of the response.
213
206
214
-
#### Response Metadata
215
-
216
-
This is useful when we need to give the frontend some information that is not related to the endpoint.
217
-
218
-
```ts
219
-
exportinterfaceIResponseMetadata {
220
-
languages:ENUM_MESSAGE_LANGUAGE[];
221
-
timestamp:number;
222
-
timezone:string;
223
-
requestId:string;
224
-
path:string;
225
-
version:string;
226
-
repoVersion:string;
227
-
nextPage?:string;
228
-
previousPage?:string;
229
-
firstPage?:string;
230
-
lastPage?:string;
231
-
[key:string]:any;
232
-
}
233
-
```
234
-
235
207
#### Response Default
236
208
237
209
Default response for the response
@@ -265,6 +237,27 @@ export class ResponsePagingSerialization {
265
237
266
238
```
267
239
240
+
#### Response Metadata
241
+
242
+
This is useful when we need to give the frontend some information that is related / not related with the endpoint.
243
+
244
+
```ts
245
+
exportinterfaceIResponseMetadata {
246
+
languages:ENUM_MESSAGE_LANGUAGE[];
247
+
timestamp:number;
248
+
timezone:string;
249
+
requestId:string;
250
+
path:string;
251
+
version:string;
252
+
repoVersion:string;
253
+
nextPage?:string;
254
+
previousPage?:string;
255
+
firstPage?:string;
256
+
lastPage?:string;
257
+
[key:string]:any;
258
+
}
259
+
```
260
+
268
261
## Prerequisites
269
262
270
263
We assume that everyone who comes here is **`programmer with intermediate knowledge`** and we also need to understand more before we begin in order to reduce the knowledge gap.
@@ -390,11 +383,11 @@ docker-compose up -d
390
383
391
384
## API Reference
392
385
393
-
You can check The Api Spec in [here][api-reference-docs]
386
+
You can check The ApiSpec after running this project. [here][api-reference-docs]
0 commit comments