help.getAppConfig
Get app-specific configuration, see client configuration for more info on the result.
func (c *Client) HelpGetAppConfig(ctx context.Context, hash int) (HelpAppConfigClass, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.HelpGetAppConfig(ctx, hash)
if err != nil {
return err
}
_ = res // HelpAppConfigClass
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Hash | int | yes | Hash used for caching, for more info click here. |
Returns
References
- Official documentation
- Generated Go reference
- TL definition:
help.getAppConfig#61e3f854