/**
* Interfaces - What the API expects and what it returns
*
* Generic API Response interface.
*/exportinterfaceApiResponse {
title: string;
description?: string;
}
exportinterfaceApiErrorResponse {
title: string;
description: string;
status: number;
}