help.getCdnConfig
Get configuration for CDN file downloads.
func (c *Client) HelpGetCDNConfig(ctx context.Context) (*CDNConfig, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.HelpGetCDNConfig(ctx)
if err != nil {
return err
}
_ = res // *CDNConfig
return nil
})
Parameters
This method takes no parameters.
Returns
References
- Official documentation
- Generated Go reference
- TL definition:
help.getCdnConfig#52029342