Represents a custom data category object.

interface CustomDataCategoryObject {
    count: number;
    exampleData: {
        [key: string]: object;
    };
    id: number;
    name: string;
}

Properties

count: number

The count or number of items in this custom data category.

exampleData: {
    [key: string]: object;
}

Example data associated with this custom data category. This is represented as a dictionary where keys are strings and values are objects.

id: number

The unique identifier of the custom data category.

name: string

The name or title of the custom data category.