CategoryResponse

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.

subCategories

List of SubCategoriesResponse, or null if not set.

Constructors

Link copied to clipboard
constructor(id: String?, title: String?, description: String?, name: String?, url: String?, subCategories: List<SubCategoriesResponse>?)

Properties

Link copied to clipboard
Link copied to clipboard
val id: String?
Link copied to clipboard
val name: String?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val url: String?