-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodel_error401.go
15 lines (13 loc) · 1.72 KB
/
model_error401.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
* Weather API
*
* # Introduction WeatherAPI.com provides access to weather and geo data via a JSON/XML restful API. It allows developers to create desktop, web and mobile applications using this data very easy. We provide following data through our API: - Real-time weather - 14 day weather forecast - Historical Weather - Marine Weather and Tide Data - Future Weather (Upto 365 days ahead) - Daily and hourly intervals - 15 min interval (Enterprise only) - Astronomy - Time zone - Location data - Sports - Search or Autocomplete API - Weather Alerts - Air Quality Data - Bulk Request # Getting Started You need to [signup](https://www.weatherapi.com/signup.aspx) and then you can find your API key under [your account](https://www.weatherapi.com/login.aspx), and start using API right away! Try our weather API by using interactive [API Explorer](https://www.weatherapi.com/api-explorer.aspx). We also have SDK for popular framework/languages available on [Github](https://github.com/weatherapicom/) for quick integrations. If you find any features missing or have any suggestions, please [contact us](https://www.weatherapi.com/contact.aspx). # Authentication API access to the data is protected by an API key. If at anytime, you find the API key has become vulnerable, please regenerate the key using Regenerate button next to the API key. Authentication to the WeatherAPI.com API is provided by passing your API key as request parameter through an API . ## key parameter key=YOUR API KEY
*
* API version: 1.0.2
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package swagger
type Error401 struct {
Code int32 `json:"code,omitempty"`
Message string `json:"message,omitempty"`
}