pub type ChapterResponse = Result<ApiData<ApiObject<ChapterAttributes>>, Error>;
enum ChapterResponse { Ok(ApiData<ApiObject<ChapterAttributes>>), Err(Error), }
Contains the success value
Contains the error value