OpenWeather-gRPC-API/proto/current.proto

19 lines
436 B
Protocol Buffer

syntax = "proto3";
package weather;
option go_package = "codeberg.org/andcscott/OpenWeatherMap-gRPC-API/proto";
message RequestCurrent {
oneof location {
string city = 1;
string zip_code = 2;
string coords = 3; // Comma separated coordinates, e.g. "44.5,-123.3"
}
optional string state = 4; // US Only
optional string country = 5; // Must be ISO 3166 country code
}
message SendCurrent {
string payload = 1;
}