Gift Category
data class GiftCategory(val categoryID: String = "", val name: String = "", val desc: String = "", val extensionInfo: Map<String, String> = emptyMap(), val giftList: List<Gift> = emptyList())
Gift category.
Overview
Contains gift category ID, name, description, and the gift list under this category.
| Property | Type | Description |
| categoryID | String | Category unique identifier ID |
| name | String | Category display name |
| desc | String | Category description information |
| extensionInfo | Map<String, String> | Category extension information |
| giftList | List<Gift> | All gifts under the current category |