Category Response
data class CategoryResponse(val id: String?, val title: String?, val description: String?, val name: String?, val url: String?, val subCategories: List<SubCategoriesResponse>?)
Represents a category response.
Parameters
id
The category ID, or null if not set.
title
The title of the category, or null if not set.
description
The description of the category, or null if not set.
name
The name of the category, or null if not set.
url
The URL for the category, or null if not set.
sub Categories
List of SubCategoriesResponse, or null if not set.