Skip to main content

BaseListResponse

Dto used as template for api list responses.

BaseListResponse
type BaseListResponse<T> = {
message: string;
status: number;
count: int;
totalCount: int;
currentPage: int;
nextPage: int | null;
prevPage: int | null;
totalPages: int;
value: T[];
};

Properties

NameTypeDescriptionRequiredDefault
messagestringMessage of the responseYes-
statusnumberStatus of the responseYes-
countintNumber of items returned in the responseYes0
totalCountintTotal number of items in the listYes0
currentPageintCurrent page numberYes1
nextPageintNext page numberNonull
prevPageintPrevious page numberNonull
totalPagesintTotal number of pagesNo0
valueT[]List of items returned in the responseNoundefined