modio::GameTagOption - modio/modio-sdk-legacy GitHub Wiki
Tag options allowed for all mods submitted to the corresponding game.
class GameTagOption
{
public:
u32 hidden;
std::string name;
std::string type;
std::vector< std::string > tags;
};
Name | Type | Description |
---|---|---|
hidden | u32 |
Groups of tags flagged as 'admin only' should only be used for filtering, and should not be displayed to users. |
name | std::string |
Name of the tag group. |
type | std::string |
Can multiple tags be selected via 'checkboxes' or should only a single tag be selected via a 'dropdown'. |
tags | std::vector< std::string > |
Array of tags in this group. |
See also: API, ModioGameTagOption