Skip to main content

BaseResponse

Dto used as template for api responses.

BaseResponse
type BaseResponse<T> = {
message: string;
status: number;
value: T;
};

Properties

NameTypeDescriptionRequiredDefault
messagestringMessage of the responseYes-
statusnumberStatus of the responseYes-
valueTItem returned in the responseNoundefined