--- title: help.countriesList description: help.countriesList attributes, type and example image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png redirect_from: /API_docs/constructors/help_countriesList.html --- # Constructor: help.countriesList [Back to constructors index](index.md) ### Attributes: | Name | Type | Required | |----------|---------------|----------| |countries|Array of [help.Country](../constructors/help.Country.md) | Yes| |hash|[int](../types/int.md) | Yes| ### Type: [help.CountriesList](../types/help.CountriesList.md) ### Example: ```php $help.countriesList = ['_' => 'help.countriesList', 'countries' => [help.Country, help.Country], 'hash' => int]; ``` Or, if you're into Lua: ```lua help.countriesList={_='help.countriesList', countries={help.Country}, hash=int} ```