interface ContentItemDto {
    assetName: string;
    assetPath?: string;
    id: string;
    localizedNames?: Record<Locale.ID, string>;
    name: string;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

assetName: string
assetPath?: string

This field is only included for maps and game modes. These values are used in the match response.

id: string
localizedNames?: Record<Locale.ID, string>

This field is excluded from the response when a locale is set

name: string