listArticles method
Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.
Parameters:
type
Defaults to3
.id
Defaults to0
.getRead
Defaults to1
.batchSize
Defaults to-1
.offset
Defaults to0
.oldestFirst
Defaults to0
.
Status codes:
- 200
See:
- listArticlesRaw for an experimental operation that returns a DynamiteRawResponse that can be serialized.
Implementation
Future<DynamiteResponse<ListArticles, void>> listArticles({
int? type,
int? id,
int? getRead,
int? batchSize,
int? offset,
int? oldestFirst,
}) async {
final rawResponse = listArticlesRaw(
type: type,
id: id,
getRead: getRead,
batchSize: batchSize,
offset: offset,
oldestFirst: oldestFirst,
);
return rawResponse.future;
}